/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

.metric-card {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.metric-value {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.chart-container {
    position: relative;
    height: 200px;
}

.cycle-stages {
    margin-top: 1rem;
}
.timeline-container {
    position: relative;
}
.timeline-steps {
    display: flex;
    justify-content: space-between;
}
.timeline-step {
    flex: 1;
    position: relative;
}
.timeline-line {
    height: 4px;
    width: 100%;
    border-radius: 2px;
    margin-bottom: 10px;
}
.timeline-content p {
    margin-bottom: 0;
}
.timeline-arrow {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}
.hover-highlight:hover {
    color: #0d6efd;
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

.hover-highlight:hover {
    color: #0d6efd;
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

.timeline-container {
    padding: 20px 0;
}

.timeline-line {
    height: 4px;
    width: 100%;
    border-radius: 2px;
}

.timeline-step {
    flex: 1;
}

.timeline-arrow {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-content {
    padding-top: 15px;
}

.table th {
    font-weight: 600;
    white-space: nowrap;
}

.tab-nav {
    border-bottom: 1px solid #d0d7de;
}

.tab-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tab-item {
    margin-bottom: -1px;
}

.tab-item a {
    display: block;
    padding: 8px 16px;
    color: #24292f;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 6px 6px 0 0;
}

.tab-item.active a {
    border-color: #d0d7de;
    border-bottom-color: #fff;
    background: #fff;
}

.tab-item.active a {
    font-weight: bold;
}
