.wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* .container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
} */

h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    min-width: 700px;
    font-size: 14px;
}

.table th, .table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    white-space: nowrap;
}

.table th {
    background-color: #f0f0f0;
    font-weight: 600;
    color: #333;
}

.table th,
.table td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: center;
}

.table th {
    background: #EE6E73;
    color: white;
    font-weight: bold;
}

.table tbody tr:nth-child(even) {
    background: #f2f2f2;
}

.table tbody tr:hover {
    background: #e9ecef;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .table {
        font-size: 13px;
    }
}
/* ///// */

.pagination__wrpapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: sticky;
    bottom: 20px;
    background: #fff;
    margin-top: 1.5rem;
    padding: 0 1rem;
}

.pagination__wrpapper .pagination {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .table {
        font-size: 14px;
    }

    .table th,
    .table td {
        padding: 8px;
    }

    .pagination__wrpapper{
        flex-direction: column-reverse;
        align-items: center;
    }
    .container {
        width: 97% !important;
    }
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-wrapper .card {
    min-width: 320px;
}

.primary-font-color{
    color:#ee6e73;
}
.primary-bg-color{
    color:#ee6e73;
}

.filter-form{
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
}

.full-width{
    width: 100%;
}

.primary-button{
    background-color: #ee6e73;
    color: white;
    border: none;
    padding: 10px 32px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.left-menu{
    margin-left: 1rem;
}