.shopify-table {
    /* width: 100%; */
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    overflow: hidden;
    margin: 32px auto;
}

.shopify-table th,
.shopify-table td {
    padding: 8px 18px;
    text-align: left;
}

.shopify-table th {
    background: #f6f6f7;
    font-weight: 600;
    color: #212b36;
    font-size: 15px;
    border-bottom: 1px solid #e3e3e3;
    border-top: 1px solid #e3e3e3;
}

.shopify-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.shopify-table th:first-child {
    border-radius: 8px 0 0 0;
    border-left: 1px solid #e3e3e3;
}


.shopify-table th:last-child {
    border-radius: 0px 8px 0 0;
    border-right: 1px solid #e3e3e3;
}

.shopify-table tr:last-child {
    border-bottom: none;
}

.shopify-table td:first-child {
    border-left: 1px solid #e3e3e3;
}

.shopify-table td:last-child {
    border-right: 1px solid #e3e3e3;
}

.shopify-table tr:last-child td:first-child {
    border-radius: 0 0 0 8px;
}

.shopify-table tr:last-child td:last-child {
    border-radius: 0 0 8px 0;
}

.shopify-table td {
    font-size: 14px;
    color: #454f5b;
    border-bottom: 1px solid #e3e3e3;
    border-top: none;
}

.shopify-table td a {
    color: #005bd3;
}

.shopify-table tbody tr {
    /* cursor: pointer; */
    transition-duration: 300ms;
}

.shopify-table tbody tr:hover {
    background: #f7f7f7;
    transition-duration: 300ms;
}

.analytics-header {
    display: flex;
    align-items: center;
    padding: 14px 16px 0;
    justify-content: space-between;
}

.analytics-title {
    font-size: 22px;
    font-weight: 700;
    /* margin: 32px 0 12px 0; */
    text-align: left;
    color: #212b36;
}

.tk-analytic-cards {
    background-color: #ffffff;
    padding: 14px;
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    justify-content: center;
}

.tk-analytic-card {
    background-color: #ffffff;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 16px;
    max-width: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.4s;
}

.tk-analytic-card:hover {
    background-color: #f1f1f1;
}

.tk-card-header {
    font-size: 16px;
    font-weight: 600;
    color: #202223;
    margin-bottom: 8px;
}

.tk-card-body {
    font-size: 32px;
    font-weight: bold;
    color: #303030;
}

.tk-card-footer {
    margin-top: 16px;
    font-size: 12px;
    color: #6d7175;
}

@media (max-width: 600px) {
    .tk-analytic-cards {
        flex-wrap: wrap;
    }
}


.inputField::placeholder {
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
        Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
}

.inputField {
    padding: 5px 12px;
    font-size: 14px;
    width: 100%;
    height: 20px;
    max-height: 32px;
    border-radius: 8px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
        Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
    caret-color: #303030;
    color: #303030;
    background-color: #ffffff;
    border: 0.66px solid #8a8a8a;
    outline-offset: 1px;
    outline: 2px solid transparent;
    transition: border 0.4s ease-in-out;
}

.inputField:hover {
    border: 0.66px solid #1a1a1a;
}

.inputField:focus {
    border: 0.66px solid #1a1a1a;
    outline: 2px solid #005bd3;
    animation-duration: 0.4s;
}