.store-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.store-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.store-info {
    display: flex;
    flex-direction: column;
}

.store-name {
    font-weight: 600;
    font-size: 15px;
}

.store-code {
    font-size: 12px;
    color: #666;
}

.store-status {
    margin-top: 4px;
    font-size: 11px;
    color: #1976d2;
}

.store-actions {
    display: flex;
    gap: 8px;
}

    .store-actions button {
        border: none;
        padding: 6px 10px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 12px;
    }

.btn-form {
    background: #1976d2;
    color: white;
}

.btn-details {
    background: #eee;
}


.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

    .modal.hidden {
        display: none;
    }

.modal-content {
    background: white;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    padding: 16px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color:#000;
}
.store-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 12px;
    width: fit-content;
}

.status-draft {
    background: #fff3cd;
    color: #856404;
}

.status-completed {
    background: #e6f4ea;
    color: #1e7e34;
}

.status-icon {
    font-size: 14px;
}