.loan-cal-container {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Noto Sans KR', sans-serif;
    color: #333;
}
.sub-title {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 25px;
}
.calculator-box {
    background: #fff;
    padding: 25px;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.input-row {
    margin-bottom: 20px;
}
.input-row label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.95em;
}
.input-row input, .input-row select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1em;
}
.custom-input {
    margin-top: 8px;
    border: 1px solid #3498db !important;
}
.calc-btn {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}
.calc-btn:hover {
    background: #219150;
}
.result-box {
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #27ae60;
}

/* 공유하기 버튼 스타일 */
.share-container {
    text-align: right;
    margin-bottom: 15px;
}
.share-btn {
    width: auto;
    display: inline-block;
    padding: 8px 15px;
    background: #fff;
    color: #2c3e50;
    border: 1px solid #2c3e50;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}
.share-btn:hover {
    background: #2c3e50;
    color: #fff;
}

.section-divider {
    margin: 40px 0;
    border: 0;
    border-top: 1px solid #eee;
}
.info-section h3 {
    border-bottom: 2px solid #27ae60;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.info-section ul {
    padding-left: 20px;
}
.info-section li {
    margin-bottom: 10px;
}
