body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #e1e7ff; /* Background color for the entire page */
}

main {
    background-color: #ffffff; /* Background color for the main content */
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
    width: 90%; /* Adjust the width to center the content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a shadow for better visual separation */
}

.navbar {
    background-color: #e1e7ff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    margin-bottom: 20px;
}

.logo {
    height: 50px;
}

.SELLER_INTER span {
    font-size: 24px;
    font-weight: bold;
    color: #5a67d8;
}

.help_button .Help {
    background-color: #5a67d8;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
}

.store_name {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #5a67d8;
    margin-bottom: 20px;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #f9f9f9;
    font-weight: bold;
}

tr:hover {
    background-color: #f1f1f1;
}

.no-data {
    text-align: center;
    padding: 20px;
    font-size: 18px;
    color: gray;
}

/* Modal styles */
.modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

#sellerNameInput {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
}

#submitNameButton {
    padding: 10px 20px;
    background-color: #5a67d8;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.more-details-button {
    margin-left: 10px; /* Adjust as needed for spacing */
    padding: 10px 20px;
    background-color: #5a67d8;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.more-details-button:hover {
    background-color: #4b57c5;
}

/* Hide specific columns by default */
.hide-column {
    display: none;
}

body[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

body[dir="rtl"] th, body[dir="rtl"] td {
    text-align: right;
}