/* 더미 텍스트 생성기 스타일 */
.dtg-container * {
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif;
}

.dtg-container {
    max-width: 800px;
    margin: 0 auto;
}

.dtg-container .title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4285f4;
    /*margin-bottom: 10px;*/
}

.dtg-container .subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.dtg-container .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;
}

.dtg-container .section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4285f4;
    margin-bottom: 20px;
}

.dtg-container .button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dtg-container .primary-button {
    background-color: #4285f4;
    color: white;
}

.dtg-container .secondary-button {
    background-color: #e8f0fe;
    color: #4285f4;
}

.dtg-container .reset-button {
    background-color: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
}

.dtg-container .button:hover {
	background-color: #525359;
    color: white;
    opacity: 0.9;
    transform: translateY(-2px);
}

.dtg-container .button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.dtg-container .text-area {
    width: 100%;
    min-height: 300px;
    padding: 15px;
    border: 1px solid #e8f0fe;
    border-radius: 4px;
    font-size: 1rem;
    resize: vertical;
    margin-bottom: 15px;
}

.dtg-container .stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.dtg-container .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;
}

.dtg-container .stat-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.dtg-container .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4285f4;
}

.dtg-container .notice {
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px;
}

.dtg-container .options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.dtg-container .option-group {
    flex: 1;
    min-width: 200px;
}

.dtg-container .option-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #4285f4;
}

.dtg-container .option-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #e8f0fe;
    border-radius: 4px;
}

.dtg-container .radio-group {
    display: flex;
    gap: 15px;
}

.dtg-container .radio-option {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .dtg-container .stats-container {
        flex-direction: column;
    }
    
    .dtg-container .stat-box {
        min-width: 100%;
    }
    
    .dtg-container .button-group {
        flex-direction: column;
    }
    
    .dtg-container .button {
        width: 100%;
    }
}