﻿html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center */
    align-items: center; /* Horizontally center */
    padding: 20px;
}


.mainHeader1 {
    padding: 8px 10px;
}

.header img {
    height: 50px;
    margin-right: 15px;
}

.header h1 {
    font-size: 24px;
    color: #e26228;
    margin: 0;
}

.dashboard-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 40px 20px;
}

.card-bordered {
    display: flex;
    background: #ffffff;
    border-left: 5px solid #004080;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    width: 400px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

    .card-bordered:hover {
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    }

.card-icon {
    margin-right: 20px;
    display: flex;
    align-items: flex-start;
}

    .card-icon .icon {
        background-color: #f3f3f3;
        color: #ffffff;
        font-size: 24px;
        padding: 12px;
        border-radius: 8px;
        display: inline-block;
    }

.card-content h3 {
    margin-top: 0;
    color: #004080;
    font-size: 18px;
}

.card-content p {
    font-size: 14px;
    color: #555;
    margin: 10px 0 20px;
    line-height: 1.5;
}

.card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.button {
    padding: 8px 16px;
    background-color: #004080;
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

    .button:hover {
        background-color: #0059b3;
    }

    .button.secondary {
        background-color: #e26228;
    }

        .button.secondary:hover {
            background-color: #c54e16;
        }

footer {
    text-align: center;
    padding: 20px;
    background-color: #1274a5;
    font-size: 14px;
    color: white;
}

.button.disabled,
.button[disabled] {
    background-color: #ccc !important;
    color: #666 !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
}
