* {
    box-sizing: border-box;
}

/* ===== BODY ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f6f9;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px 4px;
    background: white;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #ccc;
    flex-wrap: wrap;
}

/* ===== LOGO ===== */
.logo img {
    width: 100px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

/* ===== TITLE ===== */
.title {
    text-align: center;
    flex: 1;
    position: static;
    transform: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.title h1 {
    margin: 0;
    font-size: 26px;
    letter-spacing: 2px;
    font-weight: bold;
    color: #1e3c72;
    padding-right: 0;
    line-height: 1.1;
}

.title p {
    margin: 3px 0 2px 0;
    font-size: 13px;
    color: gray;
    padding-right: 0;
    line-height: 1.1;
}

/* ===== NAVBAR ===== */
.nav {
    display: flex;
    margin-left: auto;
    padding-right: 0;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 4px;
    margin-bottom: 0;
}

.nav a {
    text-decoration: none;
    font-weight: bold;
    color: black;
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.nav a:hover {
    color: #1e3c72;
    transition: 0.3s;
}

/* ===== HR LINE ===== */
hr {
    display: none;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 20px;
    width: 100%;
}

/* ===== SECTION ===== */
.section {
    margin-bottom: 25px;
    width: 100%;
}

.section h3 {
    background: #0b3d5c;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* ===== INPUT ===== */
input {
    padding: 10px;
    margin: 5px;
    width: 100%;
    max-width: 250px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* ===== BOX ===== */
.box {
    display: inline-block;
    width: 250px;
    margin: 5px;
    vertical-align: top;
}

.box select {
    width: 100%;
    height: 38px;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 8px;
    font-size: 14px;
}

/* ===== TABLE ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background: white;
}

th {
    background: #0b3d5c;
    color: white;
}

th,
td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}

/* ===== BUTTON ===== */
button {
    margin-top: 10px;
    padding: 10px 18px;
    background: #0b3d5c;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background: #145374;
}

/* ===== ACTION BUTTONS ===== */
.action-btn {
    margin: 10px;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: bold;
}

/* ===== CENTER ===== */
center {
    display: block;
    text-align: center;
    margin-bottom: 30px;
}

/* ================= MOBILE VIEW ================= */
@media screen and (max-width:768px){

     /* body{
        overflow-x:hidden;
    }

    
    .header{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        padding:12px 10px;
        text-align:center;
        position:relative;
    }

    .logo{
        width:100%;
        display:flex;
        justify-content:center;
    }

    .logo img{
        width:70px;
        height:70px;
        border-radius:50%;
    }

    .title{
        width:100%;
        margin-top:8px;
        text-align:center;
    }

    .title h1{
        font-size:18px;
        line-height:1.3;
        letter-spacing:1px;
        margin:0;
        white-space:normal;
    }

    .title p{
        font-size:12px;
        margin-top:4px;
        color:gray;
    }



    .nav{
        width:100%;
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:8px;
        margin-top:12px;
    }

    .nav a{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        padding:10px 5px;
        text-decoration:none;
        color:#fff;
        background:#0b3d5c;
        border-radius:8px;
        font-size:12px;
        font-weight:bold;
        transition:.3s;
    } 

    .nav a i{
        font-size:18px;
        margin-bottom:5px;
    }

    .nav a:hover{
        background:#145374;
        color:#fff;
    }  */


     body{
        overflow-x:hidden;
        background:#f4f6f9;
    }

    /* ================= HEADER ================= */

    .header{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        padding:10px;
        position:fixed;
        top:0;
        left:0;
        width:100%;
        z-index:1000;
        background:#fff;
        box-sizing:border-box;
    }

    .logo img{
        width:65px;
        height:65px;
    }

    .title{
        width:100%;
        text-align:center;
        margin-top:5px;
    }

    .title h1{
        font-size:18px;
        margin:5px 0;
        line-height:1.3;
    }

    .title p{
        font-size:12px;
        margin:0;
    }


    

    hr{
        display:none;
    }

    /* Main Content */

.main-content{
    width:100%;
    padding:220px 12px 12px;
}

    .section{
        margin-bottom:20px;
    }

    .section h3{
        font-size:16px;
        text-align:center;
    }

    input{
        width:100%;
        max-width:100%;
        margin:8px 0;
    }

    .box{
        width:100%;
        margin:8px 0;
    }

    .box select{
        width:100%;
        height:42px;
    }

    table{
        display:block;
        overflow-x:auto;
        white-space:nowrap;
    }

    button,
    .action-btn{
        width:100%;
        margin-top:10px;
    }

}
