.ot-quick-actions * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ot-quick-actions {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    min-height: calc(100vh - 120px);
}

.ot-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ot-header {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.ot-header h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.ot-header p {
    color: #666;
    font-size: 14px;
}

.ot-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.ot-section-header {
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.ot-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.ot-section-content {
    padding: 20px;
}

.ot-status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}

.ot-status-badge {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.ot-status-badge.enabled {
    background: #e8f5e8;
    color: #2d7d2d;
}

.ot-status-badge.disabled {
    background: #fef2f2;
    color: #dc2626;
}

.ot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.ot-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    background: white;
}

.ot-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.ot-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
}

.ot-form-group {
    margin-bottom: 16px;
}

.ot-form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
}

.ot-form-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

.ot-form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.ot-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.ot-btn-primary {
    background: #3b82f6;
    color: white;
}

.ot-btn-primary:hover {
    background: #2563eb;
}

.ot-btn-secondary {
    background: #6b7280;
    color: white;
}

.ot-btn-secondary:hover {
    background: #4b5563;
}

.ot-btn-danger {
    background: #ef4444;
    color: white;
}

.ot-btn-danger:hover {
    background: #dc2626;
}

.ot-stats-grid {
    display: grid;
    gap: 8px;
}

.ot-stat-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 14px;
}

.ot-stat-label {
    color: #666;
}

.ot-stat-value {
    font-weight: 500;
    color: #1a1a1a;
}

.ot-danger-zone {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    overflow: hidden;
}

.ot-danger-header {
    background: #ef4444;
    color: white;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.ot-danger-content {
    padding: 20px;
}

.ot-warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #856404;
}

.ot-expandable {
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    color: #dc2626;
}

.ot-expandable::before {
    content: "▶";
    margin-right: 8px;
    transition: transform 0.2s;
}

.ot-expandable.expanded::before {
    transform: rotate(90deg);
}

.ot-collapsible-content {
    display: none;
    margin-top: 16px;
}

.ot-collapsible-content.expanded {
    display: block;
}

.ot-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ot-loading {
    position: relative;
    overflow: hidden;
}

.ot-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: ot-shimmer 1.5s infinite;
}

@keyframes ot-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.ot-success {
    border-left: 4px solid #10b981;
    background: #ecfdf5;
    padding: 12px;
    border-radius: 6px;
    margin: 16px 0;
}

.ot-error {
    border-left: 4px solid #ef4444;
    background: #fef2f2;
    padding: 12px;
    border-radius: 6px;
    margin: 16px 0;
}

.ot-form-row {
    display: flex;
    gap: 16px;
    align-items: end;
}

.ot-form-row .ot-form-group {
    flex: 1;
}

.ot-checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

.ot-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #3b82f6;
}

.ot-progress {
    width: 100%;
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    margin: 16px 0;
}

.ot-progress-bar {
    height: 100%;
    background: #3b82f6;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    .ot-quick-actions {
        margin: -20px -10px -20px -10px;
        padding: 10px;
    }
    
    .ot-grid {
        grid-template-columns: 1fr;
    }
    
    .ot-form-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ot-header h1 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .ot-section-content {
        padding: 15px;
    }
    
    .ot-card {
        padding: 15px;
    }
    
    .ot-btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 8px;
    }
}
