/* ============================
   APPROVE PAGE SPECIFIC STYLES
   ============================ */

/* Single Column Grid for Approve Page */
.approve-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 30px;
}

/* Success Box Styles */
.approve-box {
    padding: 60px;
    margin-top: 20px;
    width: 100%; /* Takes full width of the container since there is no sidebar */
}

.approve-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.approve-title {
    font-size: 40px;
    line-height: 55px;
    font-weight: 900;
    color: #fff;
    margin: 0;
}

.approve-icon {
    font-size: 40px;
    color: #4CAF50; /* Green checkmark */
    display: flex;
    align-items: center;
    justify-content: center;
}

.approve-text {
    font-size: 20px;
    line-height: normal;
    color: #ddd;
    margin-bottom: 40px;
    max-width: 900px;
}

/* Button back to homepage */
.btn-home {
    display: inline-block;
    padding: 16px 36px;
    background: var(--primary-orange);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: max-content;
}

.btn-home:hover {
    background: #e8690a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
}

.btn-home:active {
    transform: translateY(0);
}

/* ============================
   MOBILE RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    .approve-box {
        padding: 30px 20px;
        text-align: center;
    }

    .approve-title {
        font-size: 16px;
        text-align: center;
        line-height: 1.4;
    }

    .approve-header {
        flex-direction: column-reverse;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .approve-icon {
        font-size: 50px; /* Adjusted icon on mobile centered at top */
    }

    .approve-text {
        text-align: center;
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .btn-home {
        width: 100%;
        padding: 14px;
        font-size: 14px;
    }
}
