/* Edgar Power — drobné úpravy Bootstrap tématu */

body {
    background-color: #f8f9fa;
}

.report-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.report-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
}

.navbar-brand {
    font-weight: 600;
}

footer {
    border-top: 1px solid #dee2e6;
}

/* Spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Kontakty — inline editace */
.kontakt-edit {
    border-color: transparent;
    background: transparent;
    padding: 0.15rem 0.3rem;
}
.kontakt-edit:focus {
    border-color: #86b7fe;
    background: #fff;
}
.kontakt-saved {
    animation: save-flash 0.8s ease;
}
@keyframes save-flash {
    0% { background-color: rgba(25, 135, 84, 0.15); }
    100% { background-color: transparent; }
}
.table-success-subtle {
    background-color: rgba(25, 135, 84, 0.05) !important;
}
