/* Military Discharge Calculator Specific Styles */

.calc-result-highlight {
    margin-bottom: 24px;
}

/* Service type grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: #FAFAFA;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-item:hover {
    border-color: #319C80;
}

.service-item.active {
    border-color: #319C80;
    background: rgba(49, 156, 128, 0.05);
}

.service-item input[type="radio"] {
    display: none;
}

.service-item label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

/* Progress bar */
.progress-container {
    margin-top: 16px;
}

.progress-bar {
    width: 100%;
    background-color: #E0E0E0;
    border-radius: 8px;
    height: 16px;
    overflow: hidden;
}

.progress-bar-inner {
    height: 100%;
    background-color: #319C80;
    border-radius: 8px;
    transition: width 0.3s ease;
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 16px;
}

#progress-percent {
    font-weight: 600;
    color: #319C80;
    margin-left: 8px;
}
