/* Redirect Tracer custom styles */
.redirect-timeline {
    position: relative;
    padding-left: 30px;
    margin: 20px 0;
}
.redirect-timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: #e2e8f0;
}
.redirect-timeline-item {
    position: relative;
    margin-bottom: 25px;
}
.redirect-timeline-item:last-child {
    margin-bottom: 0;
}
.redirect-node {
    position: absolute;
    left: -30px;
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #3b82f6;
    z-index: 2;
}
.redirect-node.insecure {
    border-color: #ef4444;
    background-color: #fee2e2;
}
.redirect-node.final {
    border-color: #10b981;
    background-color: #d1fae5;
}
.redirect-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: all 0.2s ease-in-out;
}
.redirect-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.badge-status {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: bold;
}
.header-toggle-btn {
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    color: #1f2937;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s ease-in-out;
}
.header-toggle-btn:hover {
    color: #2563eb;
    text-decoration: underline;
}
.headers-table {
    font-family: monospace;
    font-size: 12.5px;
    background: #f8fafc;
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    line-height: 1.6;
    color: #4b5563;
    overflow-x: auto;
}
.header-key {
    font-weight: 700;
    color: #111827;
}
.header-value {
    color: #2563eb;
    word-break: break-all;
}
