*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body{
  background-color: #f7e4c9!important;
}
.content{
  background: white;
}
#page-container{
    display: flex;
    justify-content: center;
    width: 100%;
    background: white;
}
a{
    text-decoration: none;
}


/* de aici */
header {
    background-color: white!important; /* Semi-transparent orange */
    padding: 1rem 2rem!important;
    display: flex!important;
    justify-content: space-between!important;
    align-items: center!important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1)!important;
    position: relative!important;
    z-index: 1000!important;
    backdrop-filter: blur(10px)!important;
}

/* Logo Styles */
.dashboard-logo {
    flex-shrink: 0;
}

.logo img {
    height: 40px!important;
    width: auto!important;
    transition: opacity 0.3s ease!important;
}

header .logo:hover img {
    opacity: 0.8!important;
}

/* Menu Styles */
.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.menu li {
    margin: 0;
}

.menu a {
    text-decoration: none;
    background: none;
    color: #474749;
    font-weight: 500;
    padding: 0.5rem 0;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    font-weight: bold;
    display: block;
    position: relative;
}
/* Left to Right Hover Underline Effect */
.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #d07c0c;
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

/* Optional: Add slight scale effect on hover */
.menu a:hover {
    transform: translateY(-1px);
}



/* Mobile Responsive */
@media (max-width: 768px) {
    header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .menu ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .menu a {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .menu ul {
        gap: 1rem;
    }
    
    .menu a {
        font-size: 0.9rem;
    }
}

/* Footer */
        footer {
            background-color: #1a252f;
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            color: white;
            margin-bottom: 20px;
        }
        
        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
