/* IVF Calculator Styles */

.fl-calc-section {
}

.fl-calc-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fl-calc-desc {
    color: #666;
    margin-bottom: 30px;
}

.fl-calc-form-wrap {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(106, 27, 77, 0.05);
    border-top: 5px solid #e84393;
}

.fl-calc-form-group {
    margin-bottom: 25px;
}

.fl-calc-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.fl-calc-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    color: #444;
    transition: border-color 0.3s;
    background-color: #ffffff;
}

.fl-calc-select:focus {
    border-color: #e84393;
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 67, 147, 0.1);
}

.fl-calc-radio-group {
    display: flex;
    gap: 20px;
}

.fl-calc-radio {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fl-calc-btn {
    background: #e84393;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    display: inline-block;
}

.fl-calc-btn:hover {
    background: #d6307a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 67, 147, 0.3);
    color: #fff;
}

.fl-calc-btn-outline {
    background: transparent;
    color: #e84393;
    border: 2px solid #e84393;
}

.fl-calc-btn-outline:hover {
    background: #e84393;
    color: #fff;
}

.fl-calc-result-wrap {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(106, 27, 77, 0.05);
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.result-placeholder i {
    font-size: 60px;
    color: #eee;
    margin-bottom: 20px;
}

.result-placeholder h4 {
    color: #999;
    font-family: var(--fl-font-family);
}

.result-placeholder p {
    color: #aaa;
    font-size: 14px;
}

.result-heading {
    font-family: var(--fl-font-family);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.progress-circle-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    font-weight: 700;
    color: #e84393;
    font-family: var(--fl-font-family);
}

.result-info {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}

.result-disclaimer small {
    color: #888;
    line-height: 1.4;
    display: block;
}
