/* photohunt/static/photohunt/css/style.css */
body {
    background-color: #f5f5f5;
}

.card {
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card-divider {
    background-color: #6b9ac4;
    color: white;
}

.button {
    background-color: #4a7aa3;
}

.button:hover {
    background-color: #2d5e88;
}

.button.secondary {
    background-color: #767676;
}

.thumbnail {
    max-height: 200px;
    width: auto;
    margin: 0 auto 1rem;
    display: block;
}

.top-bar {
    background-color: #2d5e88;
    color: white;
    margin-bottom: 1.5rem;
}

.top-bar .menu {
    background-color: transparent;
}

.top-bar .menu a {
    color: white;
}

h1, h2, h3, h4 {
    color: #2d5e88;
}

.progress {
    height: 20px;
    margin: 10px 0;
}

.progress-meter {
    background-color: #4a7aa3;
}

/* Mobile-first adjustments */
@media screen and (max-width: 640px) {
    .card-section {
        padding: 0.8rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}