/* Custom styles for the atomipy web application */

body {
    background-color: #f8f9fa;
    min-height: 100vh;
    position: relative;
    padding-bottom: 60px; /* Space for the footer */
}

.navbar-brand {
    font-weight: bold;
    letter-spacing: 1px;
}

.card {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

.card-header {
    font-weight: bold;
}

.form-control:focus {
    border-color: #6c757d;
    box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.25);
}

.footer {
    position: relative;
    margin-top: 30px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #f5f5f5;
}

/* Custom upload button styling */
.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
    background-color: #f8f9fa;
    transition: all 0.3s;
}

.custom-file-upload:hover {
    background-color: #e9ecef;
}

/* Results page styling */
.list-group-item {
    transition: background-color 0.2s;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}

/* Alert styling */
.alert {
    border-radius: 8px;
}

/* Responsive fixes */
@media (max-width: 576px) {
    .card-body {
        padding: 1rem;
    }
}

/* Add Bootstrap icons */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css");
