/* 임시 텍스트 로고 스타일 */
.text-logo {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    color: #2c5530;
    font-size: 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border: 3px solid #2c5530;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #2c5530, #4CAF50);
    position: relative;
}

.logo-circle::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
}

.logo-text {
    color: #2c5530;
}

.logo-text .green {
    color: #4CAF50;
}

.logo-text .sub {
    font-size: 12px;
    color: #666;
    font-weight: normal;
}
