body {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: normal;
    margin: 20px;
    background-color: #150a39;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

th, td {
    padding: 10px 20px;
    text-align: left;
}

th {
    background-color: #5724e9;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

th:hover {
    background-color: #0056b3;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #eaeaea;
}

#header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: bold;
}

#leftGif, #rightGif {
    max-width: 150px; /* Adjust as needed */
    margin: 0 100px;  /* Spacing around the gifs */
}

.boldColumn {
    font-weight: bold;
}

.shopName {
    font-size: 36px;
    font-weight: bold;
}

.spinner {
    border: 8px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top: 8px solid white;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loadText {
    text-align: center;
    padding: 20px 0;
    width: 100%;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}

#errorMessage {
    background-color: #ffeeee;
    border: 1px solid red;
    padding: 10px;
    border-radius: 5px;
    max-width: 600px;
    margin: 20px auto;
}

#signInButton {
    background-color: #4285F4; /* Google's brand color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

#signInButton:hover {
    background-color: #357ae8; /* Darker shade for hover effect */
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

#signInButton:active {
    background-color: #285aeb; /* Even darker for the active state */
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.container {
    display: flex;
    justify-content: center; /* Center horizontally */
    width: 100%; /* Full width */
    padding-top: 20px; /* Space from the top */
}