/* 텍스트 카운터 스타일 */
.text-counter-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Noto Sans KR', sans-serif;
}

.title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4285f4;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.calculator-box {
    background: linear-gradient(135deg, #f8f9fa, #e8f0fe);
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(66, 133, 244, 0.08);
    border-left: 4px solid #4285f4;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4285f4;
    margin-bottom: 20px;
}

.button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-button {
    background-color: #4285f4;
    color: white;
}

.secondary-button {
    background-color: #e8f0fe;
    color: #4285f4;
}

.reset-button {
    background-color: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
}

.button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.button-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.text-area {
    width: 100%;
    min-height: 200px;
    padding: 15px;
    border: 1px solid #e8f0fe;
    border-radius: 4px;
    font-size: 1rem;
    resize: vertical;
    margin-bottom: 15px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.stat-box {
    flex: 1;
    min-width: 150px;
    background-color: white;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4285f4;
}

.notice {
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px;
}