/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Calibri, Arial, sans-serif;
}

body {
    min-height: 100vh;
}

/* Header Styles */
header {
    padding: 20px;
    text-align: center;
    background-color: #fff;
    margin-bottom: 30px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    max-height: 50px;
}

/* Button Container Styles */
.button-container {
    display: flex;
    flex-wrap: wrap;
    min-height: calc(100vh - 160px);
    align-items: center;
    padding: 20px;
}

.portal-button {

    padding: 16px;
    margin: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
    min-width: 200px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.portal-button:hover {
    transform: scale(1.05);
}

/* Form Styles */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input, select, button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.date-group {
    display: flex;
    gap: 20px;
}

.date-input {
    flex: 1;
}

button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
}

.required::after {
    content: "*";
    color: red;
    margin-left: 3px;
}

/* Success Message Styles */
.success-message {
    text-align: center;
    padding: 40px;
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    border-radius: 8px;
    color: #3c763d;
    margin: 20px auto;
    max-width: 800px;
}

.success-message h2 {
    margin-bottom: 20px;
}

.success-message .app-number {
    font-size: 24px;
    color: #2b542c;
    margin: 15px 0;
    padding: 10px;
    background-color: #fff;
    display: inline-block;
    border-radius: 4px;
}

.new-application {
    margin-top: 20px;
    display: inline-block;
    color: #31708f;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
    }
    
    .portal-button {
        width: 100%;
        flex-basis: auto;
    }

    .logo-container {
        flex-direction: column;
    }

    .date-group {
        flex-direction: column;
    }
}
/* Admin Page Specific Styles */
.decision-form textarea {
    width: 100%;
    min-height: 100px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

.application-details p {
    margin: 8px 0;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.application-details p:last-child {
    border-bottom: none;
}
.two-column {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.two-column .form-group {
    flex: 1 1 45%;
    min-width: 200px;
}

