/* User Panel Modal (same as blacklist) */
.user-panel-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    z-index: var(--z-index-max);
}

.user-panel-modal:not(.hidden) {
    display: flex;
}

.user-panel-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #00ff88;
    border-radius: 15px;
    padding: 30px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.user-panel-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00ff88;
}

.user-panel-modal-header h3 {
    color: #00ff88;
    font-size: 1.5rem;
    text-shadow: 0 0 10px #00ff88;
}

.user-panel-modal-close {
    background: none;
    border: none;
    color: #00ff88;
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
    line-height: 1;
}

.user-panel-modal-close:hover {
    color: #ff4444;
    transform: rotate(90deg);
}

.user-panel-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
}

.tab-btn:hover {
    background: rgba(0, 255, 136, 0.2);
}

.tab-btn.active {
    background: #00ff88;
    color: #000;
}

.user-panel-tab-content {
    display: none;
}

.user-panel-tab-content.active {
    display: block;
}

.user-panel-tab-content h4 {
    color: #00ff88;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.user-panel-form .form-group {
    margin-bottom: 15px;
}

.user-panel-form label {
    display: block;
    color: #00ff88;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.user-panel-form input,
.user-panel-form select {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ff88;
    border-radius: 5px;
    color: #00ff88;
    font-family: 'JetBrains Mono', monospace;
}

/* Şirket Ekleme Modalı */
.add-company-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--z-index-max);
}

.add-company-modal.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

