/**
 * Softvence Button Widget Styles
 * Additional styles for the Softvence Button Widget
 */

.elementor-button-wrapper {
    display: inline-block;
}

.elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
    font-size: inherit;
    line-height: 1;
    border: none;
    outline: none;
}

.elementor-button-content-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.elementor-button-text {
    flex-grow: 0;
}

.elementor-button-icon {
    display: inline-flex;
    align-items: center;
}

.elementor-button-icon svg {
    width: 1em;
    height: 1em;
}

.elementor-align-icon-left {
    order: -1;
}

.elementor-align-icon-right {
    order: 1;
}

/* Button Sizes */
.elementor-size-xs {
    font-size: 12px;
    padding: 8px 16px;
}

.elementor-size-sm {
    font-size: 14px;
    padding: 10px 20px;
}

.elementor-size-md {
    font-size: 16px;
    padding: 12px 24px;
}

.elementor-size-lg {
    font-size: 18px;
    padding: 15px 30px;
}

.elementor-size-xl {
    font-size: 20px;
    padding: 18px 36px;
}

/* Button Types */
.elementor-button-info {
    background-color: #5bc0de;
    color: #fff;
}

.elementor-button-success {
    background-color: #5cb85c;
    color: #fff;
}

.elementor-button-warning {
    background-color: #f0ad4e;
    color: #fff;
}

.elementor-button-danger {
    background-color: #d9534f;
    color: #fff;
}

/* Alignment */
.elementor-align-left {
    text-align: left;
}

.elementor-align-center {
    text-align: center;
}

.elementor-align-right {
    text-align: right;
}

.elementor-align-justify .elementor-button {
    width: 100%;
}

/* Responsive Alignment */
@media (max-width: 1024px) {
    .elementor-tablet-align-left {
        text-align: left;
    }

    .elementor-tablet-align-center {
        text-align: center;
    }

    .elementor-tablet-align-right {
        text-align: right;
    }

    .elementor-tablet-align-justify .elementor-button {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .elementor-mobile-align-left {
        text-align: left;
    }

    .elementor-mobile-align-center {
        text-align: center;
    }

    .elementor-mobile-align-right {
        text-align: right;
    }

    .elementor-mobile-align-justify .elementor-button {
        width: 100%;
    }
}

