/* WhatsApp Location Shortcode - styles */

.wls-wrapper {
    display: inline-block;
    text-align: center;
    margin: 12px 0;
}

.wls-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.1s ease;
    text-decoration: none;
    font-family: inherit;
    line-height: 1;
}

.wls-button:hover {
    opacity: 0.88;
}

.wls-button:active {
    transform: scale(0.97);
}

.wls-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.wls-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.wls-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: wls-spin 0.75s linear infinite;
    flex-shrink: 0;
}

@keyframes wls-spin {
    to { transform: rotate(360deg); }
}

.wls-status {
    font-size: 13px;
    margin: 8px 0 0;
    min-height: 18px;
    color: #555;
}

.wls-status.wls-error {
    color: #d32f2f;
}

.wls-status.wls-success {
    color: #2e7d32;
    font-weight: 600;
}
