/* Regülatör Paneli Stilleri */

.regulator-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 10001;
    display: none;
    flex-direction: column;
    font-family: 'Google Sans Code', monospace;
}

.regulator-panel.active {
    display: flex;
}

.regulator-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 3px solid #000;
    background: #fff;
    box-shadow: 0 4px 0 #000;
}

.regulator-panel-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.regulator-panel-close {
    background: #fff;
    border: 3px solid #000;
    width: 36px;
    height: 36px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    font-family: 'Google Sans Code', monospace;
    font-weight: 700;
    box-shadow: 4px 4px 0 #000;
}

.regulator-panel-close:hover {
    background: #000;
    color: #fff;
    transform: translateY(2px);
    box-shadow: 2px 2px 0 #000;
}

.regulator-panel-toolbar {
    display: flex;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 2px solid #000;
    background: #f9fafb;
    flex-wrap: wrap;
}

.regulator-filter,
.regulator-search-input {
    padding: 8px 12px;
    border: 2px solid #000;
    background: #fff;
    font-family: 'Google Sans Code', monospace;
    font-size: 14px;
    min-width: 150px;
}

.regulator-search-input {
    flex: 1;
    min-width: 200px;
}

.regulator-panel-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.regulator-loading,
.regulator-error,
.regulator-empty {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 14px;
}

.regulator-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.regulator-application-card {
    border: 2px solid #000;
    background: #fff;
    padding: 20px;
    transition: all 0.2s;
}

.regulator-application-card:hover {
    box-shadow: 4px 4px 0 #000;
    transform: translateY(-2px);
}

.regulator-application-card.status-pending {
    border-left: 4px solid #fbbf24;
}

.regulator-application-card.status-reviewing {
    border-left: 4px solid #3b82f6;
}

.regulator-application-card.status-approved {
    border-left: 4px solid #10b981;
}

.regulator-application-card.status-rejected {
    border-left: 4px solid #ef4444;
}

.application-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.application-card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.application-status {
    padding: 4px 12px;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
}

.application-card-body {
    margin-bottom: 16px;
}

.application-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
    font-size: 14px;
    color: #374151;
}

.application-info div {
    display: flex;
    gap: 8px;
}

.application-info strong {
    color: #000;
    font-weight: 700;
}

.application-decision {
    margin-top: 12px;
    padding: 12px;
    background: #fef3c7;
    border: 1px solid #fbbf24;
    font-size: 14px;
    color: #92400e;
}

.application-card-footer {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}
