/**
 * Yiontech Text Button Widget Styles
 */

.yiontech-text-button-wrapper {
    display: flex;
}

.yiontech-text-button-wrapper.yiontech-text-button-align-left {
    justify-content: flex-start;
}

.yiontech-text-button-wrapper.yiontech-text-button-align-center {
    justify-content: center;
}

.yiontech-text-button-wrapper.yiontech-text-button-align-right {
    justify-content: flex-end;
}

.yiontech-text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
}

.yiontech-text-button.yiontech-text-button-solid {
    background-color: #1e40af;
    color: #ffffff;
}

.yiontech-text-button.yiontech-text-button-outline {
    background-color: transparent;
    color: #1e40af;
    border-color: #1e40af;
}

.yiontech-text-button.yiontech-text-button-ghost {
    background-color: transparent;
    color: #1e40af;
}

.yiontech-text-button.yiontech-text-button-small {
    padding: 8px 16px;
    font-size: 14px;
}

.yiontech-text-button.yiontech-text-button-medium {
    padding: 12px 24px;
    font-size: 16px;
}

.yiontech-text-button.yiontech-text-button-large {
    padding: 16px 32px;
    font-size: 18px;
}

.yiontech-text-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}