@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;700&display=swap');
:root {
    --primary-color: #015A9B;
    --accent-color: #F9BE01;
    --dark-color: #303030;
}

body {
    font-family: 'Nunito', sans-serif;
    
}

.bnv-txt{
color : #303030;
}

.header-title {
   
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
}


.header-size {
    min-height: 50px; 
    display: flex;
    align-items: center;
    justify-content: left; 
    text-align: left;
    background-color:white;
    color: #015A9B;
}

.header-graph {
    min-height: 50px; 
    display: flex;
    align-items: center;
    justify-content: center; 
    text-align: center;
    background-color:white;
    color: #015A9B;
    border-bottom: 2px solid #015A9B;
    margin-left : 15px;
    margin-right:15px ;

}

.card-size{
    padding: 20px;
    flex: 1 1 calc(33.333% - 20px); 
    max-height: 170px;
    min-height: 170px;
    margin-bottom: 10px; 
    box-sizing: border-box; 
    border-color: #015A9B;
}

.yellow-border{
    border-color: #015A9B;
}


.red-icon {
    margin-right: 8px;
    color: #e32219;
}

.blue-icon {
    margin-right: 8px;
    color: #004d9b;
}

.yellow-icon {
    margin-right: 8px;
    color: #F9BE01;
}

/* NAVBAR STYLES */
.custom-navbar {
    background-color: #015A9B !important;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #F9BE01; /* Effet maritime */
}

/* NAV LINKS */
.nav-link-custom {
    color: white !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
}

.nav-link-custom:hover {
    color: #F9BE01 !important;
    transform: scale(1.05);
}


.nav-link-custom.active {
    background-color: #F9BE01 !important; 
    color: #303030 !important; 
    font-weight: bold;
    border-radius: 5px; 
}


.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.navbar-brand h2 {
    margin: 0;
    color: white;
    font-weight: bold;
}


.nav-easyport {
    display: flex;
    align-items: center;
}

.nav-easyport span {
    color: white;
}

.nav-easyport b {
    color: #F9BE01;
}

