/* Custom styles for the application */

/* Additional vertical padding for the body */
body {
    padding-bottom: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Push the footer to the bottom */
footer {
    margin-top: auto;
}

/* Card styling */
.card {
    border-radius: 0.5rem;
    overflow: hidden;
}

.card-header {
    background-color: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Table styling */
.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Custom alert styling */
.alert {
    border-radius: 0.5rem;
}

/* Custom badge styling */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* Breadcrumb styling */
.breadcrumb {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

/* File upload styling */
.custom-file-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Pre and code styling for JSON display */
pre {
    margin-bottom: 0;
    max-height: 400px;
    overflow-y: auto;
}

pre code {
    color: #e9e9e9;
}

/* Loading spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}
