.btn-primary {
	background-color: #2b2b2b !important;	
}

.btn-secondary {
	background-color: #111111 !important;	
}

.btn-success {
    background-color: #157347 !important;
}

.btn-warning {
    background-color: #d4a200 !important;
}

.btn-danger {
    background-color: #9e1f2e !important;
}

.btn-primary-outline {
    border-color: #495057 !important;  
}

.btn-secondary-outline {
    border-color: #343a40 !important;    
}

.text-info {
    color: #2fa4e7 !important;  
}

.text-name {
    display: -webkit-box;        /* nutné pro omezení řádků */
    -webkit-line-clamp: 2;       /* maximálně 2 řádky */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-genre {
    display: -webkit-box;        /* nutné pro omezení řádků */
    -webkit-line-clamp: 1;       /* maximálně 1 řádky */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.button-highlight:hover {
    box-shadow: 0 0 10px rgba(47, 164, 231, 0.7);	
}

.button-highlight:active,
.button-highlight:focus-visible {
    box-shadow: 0 0 10px rgba(47, 164, 231, 0.7) !important;
	transform: scale(0.98);
}

.button-text-pointer {
    cursor: text !important;
}