/* 로그인 유도 모달 */
.login-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.login-modal-container {
    max-width: 414px;
    width: 90%;
    margin: 0 auto;
}

.login-modal-content {
    background-color: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.login-modal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 20px 16px 20px;
    border-bottom: 1px solid #E8E9EA;
}

.login-modal-icon {
    width: 20px;
    height: 20px;
    color: #666;
}

.login-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: black;
    margin: 0;
}

.login-modal-message {
    padding: 16px 20px;
    text-align: center;
}

.login-modal-text {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.login-modal-buttons {
    padding: 0 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-button {
    width: 100%;
    background-color: rgba(86, 170, 178, 1);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: rgba(76, 150, 158, 1);
}

.signup-button {
    width: 100%;
    background-color: white;
    color: #666;
    border: 1px solid #E8E9EA;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-button:hover {
    background-color: #F8F9FA;
}

.login-modal-features {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid #E8E9EA;
}

.login-modal-features-icon {
    width: 16px;
    height: 16px;
    color: #666;
}

.login-modal-features-text {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.login-modal-description {
    padding: 12px 20px 20px 20px;
    text-align: center;
}

.login-modal-description-text {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    margin: 0;
    line-height: 1.4;
}

/* 모바일 최적화 */
@media (max-width: 414px) {
    .login-modal-container {
        width: 95%;
    }
    
    .login-modal-content {
        border-radius: 8px;
    }
}
