/* LINE 會員系統樣式 */

.line-login-btn {
    display: inline-block;
    background-color: #00B900;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.line-login-btn:hover {
    background-color: #009900;
    color: white;
    text-decoration: none;
}

.line-login-btn:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M19.365 9.863c.349 0 .63.285.63.631 0 .345-.281.63-.63.63H17.61v1.125h1.755c.349 0 .63.283.63.63 0 .344-.281.629-.63.629h-2.386c-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.627-.63h2.386c.349 0 .63.285.63.63 0 .349-.281.63-.63.63H17.61v1.125h1.755zm-3.855 3.016c0 .27-.174.51-.432.596-.064.021-.133.031-.199.031-.202 0-.375-.078-.510-.209l-2.443-2.355v2.298c0 .344-.281.629-.631.629s-.631-.285-.631-.629V8.108c0-.27.173-.51.432-.595.064-.021.134-.031.199-.031.202 0 .375.078.51.209l2.443 2.355V8.108c0-.345.281-.63.631-.63s.631.285.631.63v4.771zm-5.741 0c0 .344-.282.629-.631.629s-.631-.285-.631-.629V8.108c0-.345.281-.63.631-.63s.631.285.631.63v4.771zm-2.466.629H4.917c-.345 0-.63-.285-.63-.629V8.108c0-.345.285-.63.63-.63s.63.285.63.63v4.141h1.756c.348 0 .629.283.629.63 0 .344-.281.629-.629.629M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645 1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    vertical-align: middle;
}

.line-member-dashboard {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.member-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #00B900;
}

.member-header h3 {
    margin: 0;
    color: #333;
    font-size: 24px;
}

.wallet-section {
    background: linear-gradient(135deg, #00B900, #00D000);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 25px;
}

.wallet-section h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
    opacity: 0.9;
}

.balance-display {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
}

.balance-amount {
    color: #fff;
}

.balance-unit {
    font-size: 20px;
    margin-left: 5px;
    opacity: 0.8;
}

.member-actions {
    text-align: center;
    margin-top: 30px;
}

.logout-btn {
    display: inline-block;
    background-color: #f44336;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.line-login-btn {
    display: block;
    margin: 20px auto;
    width: fit-content;
}
.logout-btn:hover {
    background-color: #d32f2f;
    color: white;
    text-decoration: none;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .line-member-dashboard {
        margin: 10px;
        padding: 15px;
    }
    
    .balance-display {
        font-size: 28px;
    }
    
    .member-header h3 {
        font-size: 20px;
    }
}