:root {
    --container-width: 1140px; /* 1140px (Bootstrap's default large container) or 1200px */
}

.container {
    max-width: var(--container-width) !important;
}

.logo-icon {
    width: 55px;
    height: 50px;
    background-image: url('./img/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    margin-right: 15px;
    cursor: pointer;
}

.logo-icon:hover {
    opacity: 0.8;
}

.header-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}





.aws-header {
    background-color: #232f3e;
    color: white;
    padding: 10px 0;
    margin-bottom: 20px;
}

.aws-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width) !important;
    width: 100%;
    margin: 0 auto;
}

.aws-header .logo-section {
    display: flex;
    align-items: center;
}

.aws-header .logo-icon {
    width: 40px;
    height: 40px;
    background-image: url('img/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 15px;
}

.aws-header h1 {
    color: white;
    font-size: 24px;
    margin: 0;
    font-weight: normal;
}

.aws-header .nav-dropdown {
    margin-left: 30px;
}

.aws-header .dropdown-toggle {
    background: none;
    border: 1px solid #545b64;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.aws-header .dropdown-toggle:hover {
    background-color: #37475a;
    border-color: #879196;
}

.aws-header .dropdown-menu {
    background-color: white;
    border: 1px solid #d5dbdb;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.aws-header .dropdown-item {
    color: #232f3e;
    padding: 8px 16px;
    font-size: 14px;
}

.aws-header .dropdown-item:hover {
    background-color: #f2f3f3;
    color: #232f3e;
}

.aws-header .user-section {
    display: flex;
    align-items: center;
}

.aws-header .user-info {
    margin-right: 0px;
    font-size: 12px;
}

.aws-header .user-dropdown .dropdown-toggle {
    background: none;
    border: none;
    color: white;
    padding: 8px 12px;
    font-size: 14px;
}

.aws-header .user-dropdown .dropdown-toggle:hover {
    background-color: #37475a;
    border-radius: 4px;
}

/* Responsive navigation for mobile */
@media (max-width: 768px) {
    .aws-header h1 {
        font-size: 18px;
    }
    
    .aws-header .logo-icon {
        width: 32px;
        height: 32px;
        margin-right: 10px;
    }
    
    /* Hide text labels on mobile, show only icons */
    .nav-buttons a span:last-child {
        display: none;
    }
    
    .nav-buttons {
        gap: 8px !important;
        margin-left: 15px !important;
    }
    
    .nav-buttons a {
        padding: 6px 8px !important;
    }
}

@media (max-width: 480px) {
    .aws-header h1 {
        font-size: 16px;
    }
    
    .aws-header .logo-icon {
        width: 28px;
        height: 28px;
        margin-right: 8px;
    }
    
    .nav-buttons {
        gap: 4px !important;
        margin-left: 10px !important;
    }
}
