/* Dashboard Custom Styles - Brand Colors: Gray, Black, White */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header Section */
.header-section {
    background: linear-gradient(135deg, #343a40 0%, #6c757d 100%);
    border-bottom: 3px solid #000;
}

.header-logo {
    height: 40px;
    width: auto;
}

.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
}

.form-control, .form-select {
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

/* Fix button height in input groups to match form-control height (38px) */
.input-group .btn {
    height: 38px;
    padding: 6px 12px;
}

.response-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    white-space: pre-wrap;
}

.auth-section {
    background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid #343a40;
}

.endpoint-section {
    margin-bottom: 2rem;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #343a40 0%, #495057 100%);
    color: white;
    border: none;
}

.nav-tabs .nav-link {
    color: #495057;
    border: 1px solid #dee2e6;
}

.nav-tabs .nav-link:hover {
    background-color: #e9ecef;
    color: #343a40;
}

.text-success { color: #28a745 !important; }
.text-danger { color: #dc3545 !important; }
.text-warning { color: #ffc107 !important; }

/* Custom Button Colors - Brand Palette */
.btn-primary {
    background-color: #EC9192;
    border-color: #EC9192;
    color: #333;
}

.btn-primary:hover {
    background-color: #e67f80;
    border-color: #e67f80;
    color: #333;
}

.btn-warning {
    background-color: #E9D985;
    border-color: #E9D985;
    color: #333;
}

.btn-warning:hover {
    background-color: #e5d373;
    border-color: #e5d373;
    color: #333;
}