/* Styles */

* {
    box-sizing: border-box;
}

.syncio-button-warning {
    background-color: #EF5350;
}

#registerToWoocommerce, #registerToSyncio, #openSyncio {
    display: none;
}

.syncio-logo-container {
    text-align: center;
    margin: 1rem 0;
}

.syncio-logo {
    width: 150px;
    height: auto;
}

.flex-container {
    display: flex;
    gap: 16px;
    width: 100%;
}

.flex-col.col-3 {
    width: 25%;
}

.flex-col.col-6 {
    width: 50%;
}

.flex-col.col-9 {
    width: 75%;
}

.flex-col.col-12 {
    width: 100%;
}

.justify-space-between {
    justify-content: space-between;
}

.syncio-link {
    color: #008dff;
    font-size: 14px;
    font-weight: 500;
}

.syncio-link + .syncio-link {
    margin-left: 10px;
}

.section {
    background: white;
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.section h2 {
    margin-top: 0;
}

.section p + .syncio-button {
    margin-top: 12px;
}

.section button + button {
    margin-left: 10px;
}

button {
    background: #0e3b4d;
    border-radius: 6px;
    border: 0;
    color: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    padding: .75rem 1rem;
}

button:hover {
    opacity: .85;
}

.syncio-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
}

.syncio-row {
    display: flex;
    flex-direction: row;
    background-color: #ffffff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.syncio-row:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.syncio-header {
    font-weight: bold;
    background: linear-gradient(135deg, #fdb158, #fb757c);
}

.syncio-cell {
    flex: 1;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
}

.syncio-header-cell {
    background-color: #0e3b4d;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
}
