/* General Page Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.page-container {
    max-width: 1100px;
    margin: 30px auto;
    background-color: #fff;
    border: 2px solid #4CAF50;
    padding: 20px;
    border-radius: 10px;
}

/* Header Styles */
.header {
    position: relative;
    background-color: #fff;
    text-align: center;
    border-radius: 10px 10px 0 0;
    border-bottom: 4px solid #4CAF50;
}

.header img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

/* Form Section Styles */
.content {
    padding: 20px;
}

h2 {
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.card {
    border: 1px solid #4CAF50;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 20px;
}

.form-label {
    font-weight: bold;
}

.form-control, .form-select {
    border: 1px solid #4CAF50;
    border-radius: 5px;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

/* Button Styles */
.btn-custom-green {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-custom-green:hover {
    background-color: #3e8e41;
}

/* Section Toggle Buttons */
.btn-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.btn-section button {
    width: 23%;
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-section button:hover {
    background-color: #3e8e41;
}

/* Table and Input Adjustments */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    font-size: 0.85rem;
    width: 100%;
    word-wrap: break-word;
}

table th, table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

/* Modal Styles */
.modal-dialog-wide {
    max-width: 80%;
}

/* Hidden Elements */
.hidden {
    display: none;
}

/* Custom Styles for Inputs */
input[type="text"], input[type="email"], input[type="number"], select {
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    width: 100%;
}