:root {
    --primary-color: #2c7da0;
    --secondary-color: #a9d6e5;
    --accent-color: #01497c;
    --security-green: #28a745;
    --security-yellow: #ffc107;
    --security-red: #dc3545;
    --light-gray: #f8f9fa;
    --border-color: #eaeaea;
    --text-color: #333;
    --text-muted: #6c757d;
}
  .page-header {
    background: linear-gradient(135deg, rgba(169, 214, 229, 0.4) 0%, rgba(44, 125, 160, 0.4) 100%);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(44, 125, 160, 0.2);
    position: relative;
    overflow: hidden;    color: var(--text-color);
}#protocolSelect{width:110px}
.breadcrumb {
    background-color: transparent;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
}
.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
}
.breadcrumb-item.active {
    color: var(--text-color);
}
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 125, 160, 0.15);
}
.btn-success {
    font-weight: 600;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
}
.header-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.header-table th, .header-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid var(--border-color);
}
.header-table th {
    background-color: var(--light-gray);
    font-weight: 600;
}
.header-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.7);
}
.header-name {
    font-weight: 600;
    font-family: 'Courier New', monospace;
    color: #0066cc;
}
.header-value {
    font-family: 'Courier New', monospace;
    word-break: break-all;
}
.security-score-container {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    font-weight: 700;
    font-size: 1.8rem;
}
.score-high {
    background-color: rgba(40, 167, 69, 0.1);
    border: 5px solid var(--security-green);
    color: var(--security-green);
}
.score-medium {
    background-color: rgba(255, 193, 7, 0.1);
    border: 5px solid var(--security-yellow);
    color: var(--security-yellow);
}
.score-low {
    background-color: rgba(220, 53, 69, 0.1);
    border: 5px solid var(--security-red);
    color: var(--security-red);
}
.score-label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}
.security-header-card {
    background: white;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-left: 4px solid #ddd;
}
.security-header-good {
    border-left-color: var(--security-green);
}
.security-header-warning {
    border-left-color: var(--security-yellow);
}
.security-header-bad {
    border-left-color: var(--security-red);
}
.security-header-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}
.security-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}
.warning-box {
    background-color: rgba(255, 193, 7, 0.05);
    border-left: 3px solid var(--security-yellow);
    padding: 1rem;
    border-radius: 0 4px 4px 0;
    margin: 1.5rem 0;
}
@media (max-width: 768px) {
    .score-circle {
        width: 100px;
        height: 100px;
        font-size: 1.5rem;
    }
}
.example-urls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}
.example-btn {
    background-color: rgba(44, 125, 160, 0.1);
    border: 1px solid rgba(44, 125, 160, 0.2);
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Courier New', monospace;
}
.example-btn:hover {
    background-color: rgba(44, 125, 160, 0.2);
    transform: translateY(-2px);
}
.loading-indicator {
    display: none;
    text-align: center;
    padding: 1.5rem;
}
.spinner {
    width: 3rem;
    height: 3rem;
}
.status-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}
.status-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--security-green);
}
.status-warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--security-yellow);
}
.status-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--security-red);
}
.status-info {
    background-color: rgba(44, 125, 160, 0.1);
    color: var(--primary-color);
}
.copy-btn {
    position: absolute; 
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.2s;
}
.copy-btn:hover {
    background-color: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.response-code {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}
.response-2xx {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--security-green);
}
.response-3xx {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--security-yellow);
}
.response-4xx {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--security-red);
}
.response-5xx {
    background-color: rgba(108, 117, 125, 0.1);
    color: var(--text-muted);
}
.response-status {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: normal;
}