.tryb-zgody-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 15px;
    z-index: 999999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
    font-size: 13px;
}

.tryb-zgody-banner.active {
    display: block;
}

.tryb-zgody-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.tryb-zgody-buttons {
    display: flex;
    gap: 10px;
}

.tryb-zgody-button {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 12px;
}

.tryb-zgody-accept {
    background: #4CAF50;
    color: white;
}

.tryb-zgody-accept:hover {
    background: #45a049;
}

.tryb-zgody-reject {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.tryb-zgody-reject:hover {
    background: #ebebeb;
}

.tryb-zgody-customize {
    background: #f8f9fa;
    color: #2196F3;
    border: 1px solid #2196F3;
}

.tryb-zgody-customize:hover {
    background: #e8f4fe;
}

/* Modal styles */
.tryb-zgody-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 245, 245, 0.9);
    z-index: 1000000;
    overflow-y: auto;
}

.tryb-zgody-modal.active {
    display: block;
}

.tryb-zgody-modal-content {
    background: #fff;
    color: #333;
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    font-size: 13px;
}

.tryb-zgody-modal-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.tryb-zgody-modal-header h2 {
    margin: 0;
    padding: 0;
    color: #333;
    font-size: 1.2em;
}

.tryb-zgody-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s ease;
}

.tryb-zgody-modal-close:hover {
    color: #333;
}

.tryb-zgody-option {
    margin-bottom: 12px;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.tryb-zgody-option:hover {
    background-color: #f8f9fa;
}

.tryb-zgody-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
}

.tryb-zgody-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #4CAF50;
}

.tryb-zgody-option input[type="checkbox"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.tryb-zgody-option input[type="checkbox"]:disabled + span {
    cursor: not-allowed;
}

.tryb-zgody-option-description {
    margin-top: 4px;
    font-size: 0.85em;
    color: #666;
    margin-left: 24px;
}

.tryb-zgody-modal-footer {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
} 