:root {
    --primary-color: #0066cc;
    --secondary-color: #001f3f;
    --accent-color: #ffcc00;
    --bg-color: #99e6ff;
    --card-bg: #ffffcc;
    --text-main: #000099;
    --text-muted: #8b9bb4;
    --bg-light: #ffffe6;
    --text-dark: #1D2731;
    --text-muted: #576574;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    padding: 0px 0px;
}


/* HEADER */

.vb {
    background:#ff601c;
    height:25px;
}

.vb h5{
    font-size:16px;
    color:white;
    font-weight:bold;
    text-align:center;
}


header{
    background:#f0d4fc;
}

#img-shadow {
    filter: drop-shadow(3px 3px 5px grey);  
}

.header-container{
    background:#f0d4fc;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    text-align:center;
}

.top-bar{
    background:#001f54;
    color:white;
    display:flex;
    justify-content:center;
    gap:20px;
    padding:4px;
}

.top-bar a{
    color:white;
    text-decoration:none;
}

.logo-section{
    width:10%;
}

.logo-section-right{
    width:10%;
}

.logo-section img{
    width:90px;
    height:90px;
}

.logo-section-right img{
    width:70px;
    height:100px;
}

.title-section {
    width:80%;
}
    
.title-section h1{
    color:#ff0000;
    font-size:46px;
    font-weight:bolder;
    text-shadow: 3px 3px 3px #ffffff;
}

.title-section h2{
    color:blue;
    font-size:25px;
    font-weight:bolder;
    margin-bottom:5px;
}

.title-section h3{
    background-color:yellow;
    color:blue;
    font-size:16px;
    font-weight:bolder;
}

.title-section p{
    font-size:18px;
    color:blue;
}


.affl {
    align-items:center;
    justify-content:center;
    width:100%;
    /*height:60px;*/
    background-color:#fbfc97;
    padding:0px;
}

.affl h4{
    font-size:16px;
    background:green;
    color:white;
    text-align:center;
}

.affl h5{
    font-size:16px;
    color:blue;
    text-align:center;
}

@media(max-width:768px){
    #img-shadow {
      filter: drop-shadow(2px 2px 3px grey);
    }

    .header-container{
        flex-direction:row;
    }
    
    .vb{
        font-size:10px;
    }

    .logo-section img{
        width:40px;
        height:40px;
        margin-top:0px;
        margin-left:5px;
        margin-bottom:0px;
    }

    .logo-section-right img{
        width:30px;
        height:40px;
        margin-top:0px;
        margin-right:5px;
        margin-bottom:0px;
    }

    .title-section h1{
        font:verdana;
        font-size:18px;
        font-weight:bolder;
    }

    .title-section h2{
        font-size:18px;
    }

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

    .affl {
        height:40px;
    }
    
    .affl h4{
        font-size:12px;
    }
    
    .affl h5{
        font-size:12px;
    }
}

/* Responsive Breakpoint for Tablets and Mobile */
@media (max-width: 940px) {
    .dashboard-container{
        flex-direction: column;
    }
}
