#flow-pos-stores .description {
    margin-bottom: 0;
}

#flow-pos-stores .flow-pos-stores-table-wrap {
    margin-top: 12px;
}

#flow-pos-stores .flow-pos-stores-table {
    border: 1px solid var(--flow-pos-light);
    border-radius: 10px;
    overflow: hidden;
    table-layout: auto;
}

#flow-pos-stores .flow-pos-stores-table thead th,
#flow-pos-stores .flow-pos-stores-table tfoot th {
    background: color-mix(in srgb, var(--flow-pos-light) 35%, white 65%);
    color: var(--flow-pos-dark);
    font-weight: 600;
}

#flow-pos-stores .flow-pos-stores-table td,
#flow-pos-stores .flow-pos-stores-table th {
    padding: 14px 16px;
    vertical-align: top;
}

#flow-pos-stores .flow-pos-stores-table tbody tr:hover {
    background: color-mix(in srgb, var(--flow-pos-primary) 8%, white 92%);
}

#flow-pos-stores .flow-pos-stores-table .column-primary strong {
    display: inline-block;
    margin-bottom: 6px;
}

#flow-pos-stores .flow-pos-store-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin-bottom: 8px;
    color: color-mix(in srgb, var(--flow-pos-dark) 72%, white 28%);
    font-size: 12px;
}

#flow-pos-stores .flow-pos-store-meta__item strong {
    color: var(--flow-pos-dark);
    font-weight: 600;
}

#flow-pos-stores .row-actions {
    position: static;
    left: auto;
    color: inherit;
    visibility: visible;
}

#flow-pos-stores tr:hover .row-actions,
#flow-pos-stores .mobile .row-actions,
#flow-pos-stores .column-primary:hover .row-actions,
#flow-pos-stores .column-primary:focus-within .row-actions {
    position: static;
}

#flow-pos-stores .row-title,
#flow-pos-stores .row-actions a {
    color: var(--flow-pos-primary);
}

#flow-pos-stores .row-title:hover,
#flow-pos-stores .row-title:focus,
#flow-pos-stores .row-actions a:hover,
#flow-pos-stores .row-actions a:focus {
    color: color-mix(in srgb, var(--flow-pos-primary) 78%, var(--flow-pos-dark) 22%);
}

#flow-pos-stores .flow-pos-store-cell-text {
    display: block;
    color: color-mix(in srgb, var(--flow-pos-dark) 88%, white 12%);
    line-height: 1.45;
}

#flow-pos-stores .flow-pos-row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

#flow-pos-stores .flow-pos-row-actions .edit,
#flow-pos-stores .flow-pos-row-actions .trash {
    margin: 0;
}

#flow-pos-stores .flow-pos-table-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid var(--flow-pos-dark);
    border-radius: 6px;
    background: var(--flow-pos-dark);
    color: #fff;
    text-decoration: none;
    line-height: 1;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

#flow-pos-stores .row-actions a.flow-pos-table-action,
#flow-pos-stores .row-actions a.flow-pos-table-action:visited {
    color: #fff;
}

#flow-pos-stores .flow-pos-table-action:hover,
#flow-pos-stores .flow-pos-table-action:focus {
    background: color-mix(in srgb, var(--flow-pos-dark) 88%, black 12%);
    border-color: color-mix(in srgb, var(--flow-pos-dark) 88%, black 12%);
    color: #fff;
}

#flow-pos-stores .row-actions a.flow-pos-table-action:hover,
#flow-pos-stores .row-actions a.flow-pos-table-action:focus {
    color: #fff;
}

#flow-pos-stores .flow-pos-table-action--danger {
    background: #b42318;
    border-color: #b42318;
    color: #fff;
}

#flow-pos-stores .flow-pos-table-action--danger:hover,
#flow-pos-stores .flow-pos-table-action--danger:focus {
    background: #912018;
    border-color: #912018;
    color: #fff;
}

#flow-pos-stores .flow-pos-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

#flow-pos-stores .flow-pos-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

#flow-pos-stores .flow-pos-status--active {
    color: var(--flow-pos-primary);
    background: color-mix(in srgb, var(--flow-pos-primary) 18%, white 82%);
    border-color: color-mix(in srgb, var(--flow-pos-primary) 45%, white 55%);
}

#flow-pos-stores .flow-pos-status--inactive {
    color: color-mix(in srgb, var(--flow-pos-dark) 88%, white 12%);
    background: color-mix(in srgb, var(--flow-pos-light) 45%, white 55%);
    border-color: color-mix(in srgb, var(--flow-pos-light) 80%, white 20%);
}

#flow-pos-stores code {
    padding: 2px 6px;
    border-radius: 4px;
    background: color-mix(in srgb, var(--flow-pos-light) 45%, white 55%);
    color: var(--flow-pos-dark);
    font-size: 12px;
}

@media screen and (max-width: 782px) {
    #flow-pos-stores .flow-pos-stores-table-wrap {
        margin-top: 14px;
    }

    #flow-pos-stores .flow-pos-stores-table td,
    #flow-pos-stores .flow-pos-stores-table th {
        padding: 12px;
    }

    #flow-pos-stores .flow-pos-stores-table .column-primary {
        padding-bottom: 10px;
    }

    #flow-pos-stores .flow-pos-store-meta {
        flex-direction: column;
        gap: 4px;
        margin-right: 28px;
    }

    #flow-pos-stores .flow-pos-stores-table td[data-colname='Slug'] code {
        display: inline-block;
        margin-top: 2px;
    }

    #flow-pos-stores .flow-pos-stores-table td[data-colname='Direccion'],
    #flow-pos-stores .flow-pos-stores-table td[data-colname='Contacto'] {
        white-space: normal;
    }
}
