/* Minimalist UI adjustments */

html.dark {
    background-color: #000;
}

html.dark nav {
    background-color: rgba(0, 0, 0, 0.9);
    border-color: #374151;
}

html.dark footer {
    background-color: #000;
}

body {
    padding-bottom: 2rem;
    background-color: inherit;
}

/* Style for the jumbotron since Bootstrap 5 removed it */
.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: 0.3rem;
}

/* Style for progress bars */
.progress {
    height: 25px;
}

.progress-bar {
    font-size: 0.9rem;
    line-height: 25px;
}

/* Message log styling */
#progress-logs {
    font-family: monospace;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

#progress-logs div {
    margin-bottom: 5px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

/* Card hover effect */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive image containers */
.card-img-top {
    background-color: #f8f9fa;
}

/* Badges spacing */
.badge {
    margin-right: 0.25rem;
}

/* Make all elements square */
* {
    border-radius: 0 !important;
}
