.fraction-input {
    font-size: 1.2rem;
    text-align: center;
}
.fraction-divider {
    border-top: 2px solid #6c757d;
    margin: 5px auto;
    /*width: 100%;*/
}
.fraction-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
}
.result-container {
    background-color: #f0f7ff;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    border-left: 5px solid #17a2b8;
}
.result-fraction {
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745;
    margin: 10px 0;
}
.btn-operation {
    min-width: 120px;
}
.step-explanation {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    font-size: 0.9rem;
}
.example-list {
    list-style-type: none;
    padding-left: 0;
}
.example-list li {
    padding: 5px 0;
    border-bottom: 1px dashed #dee2e6;
}
.example-list li:last-child {
    border-bottom: none;
}
.example-fraction {
    font-weight: bold;
    color: #007bff;
}
.fraction-row {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.fraction-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.fraction-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}
.original-fraction, .common-fraction {
    text-align: center;
    flex: 1;
}
.common-denominator {
    font-size: 1.8rem;
    font-weight: bold;
    color: #dc3545;
    text-align: center;
    margin: 20px 0;
}
.equal-sign {
    font-size: 2rem;
    font-weight: bold;
    color: #6c757d;
    margin: 0 15px;
}
.btn-fraction-action {
    margin-top: 10px;
}
.fraction-count-badge {
    font-size: 0.8rem;
    margin-left: 10px;
}
.lcm-highlight {
    background-color: #fff3cd;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
}
