.wlcy-login-wrap {
    max-width: 900px;
    padding: 30px;
    margin: 40px auto;
    border: 1px solid #ddd;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.wlcy-point-wrap {
    max-width: 1000px;
}

.wlcy-login-wrap h3 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #333;
    font-size: 24px;
    text-align: center;
    border-bottom: 3px solid #0073aa;
    padding-bottom: 15px;
}

.wlcy-login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.wlcy-date-group {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.date-separator {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    margin: 0 10px;
}

.wlcy-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wlcy-form-group label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.wlcy-input {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.wlcy-date-input {
    width: 180px;
    min-width: 180px;
}

.wlcy-input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.wlcy-btn {
    padding: 14px 24px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
    width: auto;
    min-width: 150px;
}

.wlcy-btn:hover {
    background: #005a87;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 115, 170, 0.3);
}

.wlcy-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.wlcy-btn-small {
    padding: 8px 16px;
    font-size: 14px;
    min-width: 80px;
}

.wlcy-point-result {
    min-height: 50px;
    margin-top: 20px;
}

.loading {
    color: #0073aa;
    padding: 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}

.loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

.error {
    color: #dc3232;
    font-weight: 600;
    padding: 15px;
    background: #fee;
    border-left: 4px solid #dc3232;
    border-radius: 6px;
    margin-top: 10px;
}

.success {
    color: #0073aa;
    font-weight: 600;
    padding: 15px;
    background: #f0f8ff;
    border-left: 4px solid #0073aa;
    border-radius: 6px;
    margin-top: 10px;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 테이블 스타일 */
.wlcy-point-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wlcy-point-table thead {
    background: #0073aa;
    color: white;
}

.wlcy-point-table th,
.wlcy-point-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.wlcy-point-table th {
    font-weight: 600;
    font-size: 15px;
}

.wlcy-point-table td {
    font-size: 14px;
    color: #333;
}

.wlcy-point-table tbody tr:hover {
    background: #f8f9fa;
}

.wlcy-point-table tbody tr:last-child td {
    border-bottom: none;
}

.no-data {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 15px;
}

.date-info {
    color: #555;
    font-size: 14px;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: #f0f8ff;
    border-radius: 6px;
    border-left: 4px solid #0073aa;
}

.detail-info {
    color: #333;
    font-size: 15px;
}

.detail-info strong {
    color: #0073aa;
    margin-right: 5px;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .wlcy-login-wrap {
        margin: 20px 15px;
        padding: 20px;
    }

    .wlcy-point-wrap {
        max-width: 100%;
    }

    .wlcy-date-group {
        flex-direction: column;
        gap: 10px;
    }

    .wlcy-date-input {
        width: 100%;
        max-width: 250px;
    }

    .date-separator {
        margin: 0;
    }

    .wlcy-point-table {
        font-size: 13px;
    }

    .wlcy-point-table th,
    .wlcy-point-table td {
        padding: 8px 10px;
    }

    .detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 500px) {
    .wlcy-login-wrap h3 {
        font-size: 20px;
    }

    .wlcy-btn {
        padding: 12px 20px;
        font-size: 15px;
    }

    .wlcy-point-table {
        font-size: 12px;
    }

    .wlcy-point-table th,
    .wlcy-point-table td {
        padding: 6px 8px;
    }
}
