
/* Dark overlay para mag-black effect */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.68); /* Madilim na overlay effect */
    z-index: 1;
}

/* Para ang content ay hindi tamaan ng shadow overlay */
.document-container {
    position: relative;
    z-index: 2;
    background-color: white;
    width: 80%;
    max-width: 900px;
    padding: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6); /* Mas malalim na shadow */
    margin: 50px auto;
}

        .header {
            text-align: center;
            margin-bottom: 30px;
        }
        .header img {
            width: 100px;
            margin: 0 15px;
        }
        h1 {
            font-size: 24px;
            font-weight: bold;
            margin-top: 0;
        }
        /* Border sa loob pero hindi kasama ang header */
        .content-container {
            border: 2px solid black; /* Border ng content */
            padding: 30px;
        }
        h2 {
            font-size: 20px;
            font-weight: bold;
            margin-top: 30px;
        }
        p, li {
            font-size: 20px;
            text-align: justify;
            line-height: 1.6;
        }
        .section-title {
            font-weight: bold;
            font-size: 18px;
            margin-top: 30px;
        }
        ul {
            margin-top: 5px;
            padding-left: 25px;
        }
        .notice {
            margin-top: 30px;
            font-size: 20px;
            font-style: italic;
            text-align: center;
        }
        .agree-box {
            margin-top: 20px;
            text-align: center;
        }
        .agree-box input {
            margin-right: 10px;
        }
        .numbered-list {
            margin-top: 10px;
            padding-left: 95px; /* Inadjust para tumapat sa 'A' ng Application */
            text-align: justify;
        }
        .numbered-list li {
            margin-bottom: 15px;
        }
        /* Para itapat ang Log in sa letter E ng ONLINE VERIFICATION */
        .login-container {
            display: flex;
            justify-content: flex-start;
            margin-left: 8px; /* Inadjust para tumapat sa E */
        }
        .login-text {
            margin-left: 67px; /* I-align sa letter E */
            margin-top: -4px;
        }
        .apply-btn {
     background:  linear-gradient(to right, #043000, #218838, #218838, #043000);/* Green to Yellow Gradient */
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.apply-btn:hover {
    background:  linear-gradient(to right, #043000, #218838, #218838, #043000);/* Green to Yellow Gradient */
    transform: scale(1.05); /* Slight Zoom on Hover */
}

.apply-btn:active {
    transform: scale(0.98); /* Shrink a bit on Click */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.tab-title {
    white-space: nowrap; /* Huwag hayaang lumampas o mag-scroll */
    overflow: hidden;
    text-overflow: ellipsis; /* Lagyan ng "..." kung hindi kasya */
    max-width: 100%;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .document-container {
        width: 90%;
        padding: 40px;
    }


    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 18px;
    }

    p, li {
        font-size: 18px;
    }

    .section-title {
        font-size: 16px;
    }
    
    .numbered-list {
        margin-top: 10px;
        padding-left: 75px; /* Inadjust para tumapat sa 'A' ng Application */
        text-align: justify;
    }
    .apply-btn {
        width: 90%;
        padding: 12px 0;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .document-container {
        width: 80%;
        padding: 30px;
    }

    .header img {
        width: 70px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 16px;
    }

    p, li {
        font-size: 16px;
    }

    .section-title {
        font-size: 14px;
    }

    .apply-btn {
        width: 100%;
        padding: 14px 0;
        font-size: 18px;
    }

    .login-container {
        justify-content: center;
    }

    .login-text {
        margin-left: 0;
    }
    .numbered-list {
        margin-top: 10px;
        padding-left: 75px; /* Inadjust para tumapat sa 'A' ng Application */
        text-align: justify;
    }
    .apply-btn {
        width: 90%;
        padding: 12px 0;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .document-container {
        width: 100%;
        padding: 20px;
    }

    .header img {
        width: 60px;
    }

    h1 {
        font-size: 18px;
    }

    h2 {
        font-size: 14px;
    }

    p, li {
        font-size: 14px;
    }

    .section-title {
        font-size: 12px;
    }

    .apply-btn {
        width: 90%;
        padding: 12px 0;
        font-size: 16px;
    }
}