

/* Donation/Inquiry Forms */
.logo-container { 
    display: flex; 
    align-items: center; 
}

.logo-main-text { 
    font-size: 1.8em; 
    font-weight: bold; 
    color: white; 
    background-color: #2E8B57; 
    padding: 5px 10px; 
    margin-right: 5px; 
    border-radius: 3px; 
}

.logo-sub-text-container { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    line-height: 1.1; 
}

.logo-text-primary { 
    font-size: 1.3em; 
    font-weight: bold; 
    color: #006400; 
}

.logo-text-secondary { 
    font-size: 0.7em; 
    color: #333; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}

nav ul { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    display: flex; 
    align-items: center; 
}

nav ul li { 
    margin-left: 20px; 
}

nav ul li a { 
    text-decoration: none; 
    color: #333; 
    font-weight: 500; 
}

.nav-button { 
    background-color: #32cd32; 
    color: white; 
    padding: 8px 18px; 
    border: none; 
    border-radius: 5px; 
    text-decoration: none; 
    font-weight: bold; 
    cursor: pointer; 
}

.dropdown { 
    position: relative; 
    display: inline-block; 
}

.dropdown-content { 
    display: none; 
    position: absolute; 
    background-color: #f9f9f9; 
    min-width: 160px; /* Adjusted */ 
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); 
    z-index: 1; 
    border-radius: 5px; 
}

.dropdown-content a { 
    color: black; 
    padding: 10px 14px; 
    text-decoration: none; 
    display: block; 
}

.dropdown-content a:hover { 
    background-color: #ddd; 
} 

.dropdown:hover .dropdown-content { 
    display: block; 
} 

.dropdown .dropbtn { 
    cursor: pointer; 
} 

.dropdown-arrow { 
    font-size: 0.7em; 
    margin-left: 3px; 
} 

.form-page-container { 
    max-width: 1000px; 
    margin: 20px auto; 
    padding: 20px; 
    background-color: #fff; 
    flex-grow: 1; 
} 

.form-title-header { 
    background-color: #f0f0f0; 
    padding: 15px; 
    margin-bottom: 25px; 
    border-radius: 8px; 
    text-align: center; 
} 

.form-title-header h1 { 
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 5px 0; 
    font-size: 1.5em; 
    color: #333; 
} 

.form-title-header p {
    font-family: 'Montserrat', sans-serif;
    margin: 0; 
    font-size: 1em; 
    color: #555; 
    font-weight: bold; 
} 

.donation-form-layout { 
    display: flex; 
    gap: 30px; 
} 

.form-left-column { 
    flex: 2; 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
} 

.form-right-column { 
    flex: 1; 
} 

.form-section { 
    background-color: #f0f0f0; 
    padding: 20px; 
    border-radius: 8px; 
    margin-bottom: 0; 
} 

.form-section h2 { 
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1em; 
    margin-top: 0; 
    margin-bottom: 15px; 
    color: #333; 
    font-weight: bold; 
} 

label { 
    font-family: 'Open Sans', sans-serif;
    display: block; 
    margin-bottom: 5px; 
    font-weight: normal; 
    color: #444; 
} 

input[type="text"], 
input[type="email"], 
input[type="tel"], 
textarea, 
select { 
    width: 100%; 
    padding: 10px; 
    margin-bottom: 15px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    box-sizing: border-box; 
    font-size: 1em; 
    background-color: #fff; 
} 

textarea { 
    resize: vertical; 
    min-height: 60px; 
} 

.date-select-group { 
    display: flex; 
    gap: 10px; 
    margin-bottom: 15px; 
} 

.date-select-group select { 
    flex: 1; 
    margin-bottom: 0; 
} 

.radio-group label { 
    display: inline-block; 
    margin-right: 15px; 
    font-weight: normal; 
} 

.radio-group input[type="radio"] { 
    margin-right: 5px; 
    vertical-align: middle; 
} 

.action-button { 
    background-color: #007bff; 
    color: white; 
    border: none; 
    padding: 10px 15px; 
    border-radius: 5px; 
    cursor: pointer; 
    font-size: 0.9em; 
    margin-top: 10px; 
    display: inline-block; 
} 

.action-button:hover { 
    background-color: #0056b3; 
} 

.file-upload-section { 
    background-color: #f0f0f0; 
    padding: 20px; 
    border-radius: 8px; 
} 

.file-drop-area-container { 
    margin-bottom: 10px; 
    position: relative; 
} 

.file-drop-area { 
    border: 2px dashed #ccc; 
    border-radius: 8px; 
    padding: 20px; 
    text-align: center; 
    margin-bottom: 10px; 
    background-color: #fff; 
    color: #777; 
    font-size: 0.9em; 
} 

.upload-files-button { 
    background-color: #e9ecef; 
    color: #495057; 
    border: 1px solid #ced4da; 
    padding: 8px 15px; 
    border-radius: 5px; 
    cursor: pointer; 
    display: inline-block; 
    margin-top: 5px; 
} 

.upload-files-button:hover { 
    background-color: #d3d9df; 
} 

.selected-file-name { 
    font-size: 0.8em; 
    color: #555; 
    margin-top: 5px; 
    word-break: break-all; 
} 

.submit-container { 
    text-align: center; 
    margin-top: 30px; 
    width: 100%; 
} 

.submit-button-main { 
    font-family: 'Montserrat', sans-serif;
    background-color: #8DC442 ; 
    color: #ffffff; 
    border: 2px solid #8DC442; 
    padding: 15px 60px; 
    font-size: 1.4em; 
    font-weight: bold; 
    border-radius: 8px; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
}


.donation-item { 
    border-top: 1px solid #ddd; 
    padding-top: 15px; 
    margin-top: 15px; 
    position: relative; 
} 

.donation-item:first-child { 
    border-top: none; 
    padding-top: 0; 
    margin-top: 0; 
} 

.remove-item-button { 
    background-color: #dc3545; 
    color: white; 
    border: none; 
    padding: 5px 10px; 
    border-radius: 4px; 
    cursor: pointer; 
    font-size: 0.8em; 
    position: absolute; 
    top: 0; 
    right: 0; 
    margin-top: -5px; 
} 

.donation-item .remove-item-button { 
    top: 15px; 
} 

.donation-item:first-child .remove-item-button { 
    display: none; 
} 

.file-drop-area-container .remove-item-button { 
    top: 0px; 
    margin-top: 0px; 
} 

.file-drop-area-container:first-child .remove-item-button { 
    display: none; 
} 

.remove-item-button:hover { 
    background-color: #c82333; 
}

/* ... Phone Number Questions... */
.phone-input-group {
    display: flex;
    align-items: center; /* Vertically aligns the '+60' text with the input box */
    gap: 10px; /* Creates a small space between the '+60' and the input box */
    margin-bottom: 15px; /* Adds space below the entire phone number component */
}

.country-code-text {
    font-size: 1em;
    color: #333; /* Dark text color */
    flex-shrink: 0; /* Prevents the '+60' from shrinking if space is tight */
}

/* The input field will now inherit the default styles for other inputs */
.phone-input-group input[type="tel"] {
    width: 100%; /* The input will take up the remaining space */
    margin-bottom: 0; /* Override any default margin from the global input style */
}


/* Styles for the new phone number format INSIDE a modal */
.modal-phone-group {
    display: flex;
    align-items: center;
    width: 80%; /* Adjust width as needed */
    margin: 10px auto; /* Center the group */
    border: 1px solid #ccc;
    border-radius: 8px; /* Slightly more rounded to match the button */
    background-color: #fff;
    overflow: hidden; /* Important for containing the child elements */
}

.modal-phone-group:focus-within {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.modal-country-code {
    padding: 10px 12px;
    font-size: 1em;
    color: #555;
    background-color: #f0f0f0;
    border-right: 1px solid #ccc;
}

.modal-phone-group input[type="tel"] {
    border: none;
    box-shadow: none;
    flex-grow: 1; /* Fills remaining space */
    width: auto;
    padding: 10px;
    font-size: 1em;
    margin-bottom: 0; /* Override default margins */
}

#confirmContactNumberButton {
    background-color: #8DC442; /* Light green */
    color: #ffffff; /* Dark green text */
    border: 2px solid #8DC442; /* Medium green border */
    padding: 12px 40px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 8px; /* Slightly more rounded */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Modal Styles */ 
.modal-overlay { 
    position: fixed; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(128, 128, 128, 0.8); 
    z-index: 2000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
} 

.modal-content { 
    background-color: #f0f0f0; 
    margin: auto; 
    padding: 30px; 
    border: 1px solid #888; 
    width: 80%; 
    max-width: 500px; 
    border-radius: 10px; 
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 
                0 6px 20px 0 rgba(0,0,0,0.19); 
    text-align: center; 
    position: relative; 
} 

.modal-close-button { 
    color: #555; 
    position: absolute; 
    top: 10px; 
    right: 20px; 
    font-size: 28px; 
    font-weight: bold; 
    cursor: pointer; 
} 

.modal-close-button:hover, 
.modal-close-button:focus { 
    color: #000; 
    text-decoration: none; 
} 

.modal-logo-container { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 20px; 
} 

.logo-main-text-modal { 
    font-size: 2em; 
    font-weight: bold; 
    color: white; 
    background-color: #2E8B57; 
    padding: 6px 12px; 
    margin-right: 8px; 
    border-radius: 4px; 
} 

.logo-sub-text-container-modal { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    line-height: 1.1; 
    text-align: left; 
} 

.logo-text-primary-modal { 
    font-size: 1.4em; 
    font-weight: bold; 
    color: #006400; 
} 

.logo-text-secondary-modal { 
    font-size: 0.75em; 
    color: #333; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
} 

.modal-content h2 { 
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4em; 
    margin-top: 0; 
    margin-bottom: 15px; 
    color: #000000; 
} 

.modal-content p { 
    font-size: 1em; 
    color: #555; 
    line-height: 1.6; 
    margin-bottom: 25px; 
} 

.modal-action-button { 
    background-color: #8DC442; 
    color: #ffffff; 
    border: 2px solid #8DC442; 
    padding: 12px 40px; 
    font-size: 1.2em; 
    font-weight: bold; 
    border-radius: 8px; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
} 

.prompt-button { 
    padding: 10px 25px; 
    font-size: 1em; 
} 

#contactNumberInput { 
    border: 1px solid #ccc; 
    border-radius: 5px; 
} 

.error-message-box { 
    background-color: #f8d7da; 
    color: #721c24; 
    border: 1px solid #f5c6cb; 
    padding: 15px; 
    margin-bottom: 20px; 
    border-radius: 5px; 
    text-align: left; 
} 