* {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif ;
}


.text-orange {
    color: #ff9807;
}

.bg-orange {
    background-color: #ff9807;
}

.btn-orange {
    background-color: #ff9807;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

.btn-orange:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}


/* Flash messages */
.flash {
    padding: 15px 25px;
    margin: 20px auto 0 auto;
    border-radius: 8px;
    width: 40%;
    text-align: center;
    font-weight: 500;
    animation: slideDown 0.5s ease-out, fadeOut 0.5s ease-in 3.5s forwards;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.flash.success {
    background-color: #28a745;
    color: white;
}

.flash.danger {
    background-color: #dc3545;
    color: white;
}

.flash.info {
    background-color: #17a2b8;
    color: white;
}

@keyframes slideDown {
    from {
        transform: translate(-50%, -100%);
    }
    to {
        transform: translate(-50%, 0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Hover efekt pro flash zprávy */
.flash:hover {
    animation-play-state: paused;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: rgb(53, 53, 53);
}


.card-body::-webkit-scrollbar {
    width: 5px;
}

.card-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.card-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

.card-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}