/* ==================== MOBILE AGREEMENT PANEL ==================== */
.mobile-agreement-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-agreement-panel.active {
    transform: translateX(0);
}

.mobile-agreement-panel .panel-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-agreement-panel .panel-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.mobile-agreement-panel .panel-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mobile-agreement-panel .panel-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    flex: 1;
}

.mobile-agreement-panel .panel-content {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    line-height: 1.6;
    color: #333;
    font-size: 0.9rem;
}

/* Scrollbar for mobile */
.mobile-agreement-panel .panel-content::-webkit-scrollbar {
    width: 6px;
}

.mobile-agreement-panel .panel-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.mobile-agreement-panel .panel-content::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 3px;
}

/* Desktop'ta mobile panel gizle */
@media (min-width: 769px) {
    .mobile-agreement-panel {
        display: none !important;
    }
}
