.navbar-space {
	height: 50px;
}

.songRatingBad {
    border-radius: 50%;
    behavior: url(PIE.htc); /* remove if you don't care about IE8 */

    width: 24px;
    height: 24px;
    padding: 5px;

    background: #fff;
    border: 2px solid #790000;
    color: #790000;
    text-align: center;

    font: 14px Arial, sans-serif;
}

.songRatingGood {
    border-radius: 50%;
    behavior: url(PIE.htc); /* remove if you don't care about IE8 */

    width: 24px;
    height: 24px;
    padding: 5px;

    background: #fff;
    border: 2px solid #365E87;
    color: #365E87;
    text-align: center;

    font: 14px Arial, sans-serif;
}

.songRatingExcelent {
    border-radius: 50%;
    behavior: url(PIE.htc); /* remove if you don't care about IE8 */

    width: 24px;
    height: 24px;
    padding: 5px;

    background: #fff;
    border: 2px solid #086F20;
    color: #086F20;
    text-align: center;

    font: 14px Arial, sans-serif;
}

.pre {
	font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
}

p {
        background-color: whitesmoke;
        padding: 5mm;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    display: none;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    box-sizing: border-box;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 14px;
    background-color: transparent;
    padding: 0;
    color: #bdc3c7;
}

.cookie-consent-text a {
    color: #3498db;
}

.cookie-consent-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.cookie-btn-accept {
    background-color: #27ae60;
    color: #fff;
}

.cookie-btn-accept:hover {
    background-color: #219a52;
}

.cookie-btn-essential {
    background-color: #7f8c8d;
    color: #fff;
}

.cookie-btn-essential:hover {
    background-color: #6c7a7b;
}

.cookie-btn-customize {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn-customize:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    justify-content: center;
    align-items: center;
}

.cookie-settings-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-settings-content h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
}

.cookie-setting-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cookie-setting-item:last-child {
    border-bottom: none;
}

.cookie-setting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-setting-header h4 {
    margin: 0;
    font-size: 15px;
    color: #2c3e50;
}

.cookie-setting-item p {
    margin: 0;
    font-size: 13px;
    color: #7f8c8d;
    background-color: transparent;
    padding: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #27ae60;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: #27ae60;
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-settings-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-btn-save {
    background-color: #27ae60;
    color: #fff;
}

.cookie-btn-save:hover {
    background-color: #219a52;
}

.cookie-btn-cancel {
    background-color: #e0e0e0;
    color: #333;
}

.cookie-btn-cancel:hover {
    background-color: #d0d0d0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }
}
