/* Header and Navigation Styles */
header {
    background-color: #2c3e50;
    color: white;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
    padding: 0 1rem;
}

.site-header h1 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
    white-space: nowrap;
}

.home-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
}

.button {
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 0.9rem;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #34495e;
}

.button.primary {
    background-color: #2c3e50;
}

.button.delete {
    background-color: #dc3545;
}

.button.delete:hover {
    background-color: #c82333;
}

.button i {
    font-size: 1rem;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .site-header {
        padding: 0 0.5rem;
    }
    
    .nav-links {
        gap: 4px;
    }
    
    .button {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .button i {
        margin-right: 0;
    }
    .button span {
        display: none;
    }
    .site-header h1 {
        font-size: 1.2rem;
    }
} 