/* Modern Navbar Styles */
.navbar {
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 60px;
}

/* Brand/Logo */
.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.brand-link:hover {
    color: #4CAF50;
}

.brand-icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #4CAF50;
}

.brand-text {
    font-size: 1.2rem;
}

/* Navigation Links */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    text-decoration: none;
    color: #ccc;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: #fff;
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.15);
}

.nav-link i {
    font-size: 1.1rem;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: #4CAF50;
    color: white;
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

/* Main Layout */
.main-container {
    min-height: calc(100vh - 60px);
    background: #121212;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 15px;
    }
    
    .nav-link span {
        display: none;
    }
    
    .brand-text {
        display: none;
    }
    
    .btn-text {
        display: none;
    }
    
    .navbar-nav {
        gap: 5px;
    }
    
    .nav-link {
        padding: 10px 12px;
    }
} 