body {
    font-family: "Share Tech Mono", monospace;
    font-weight: 400;
    font-style: normal;

    display: flex;
    flex-direction: column;

    background-color: #0e1525;
    background-image: url("/img/pattern2.png");
    /* background: linear-gradient(338deg, rgba(14, 21, 37, 1) 0%, rgba(25, 39, 71, 1) 100%); */
}

html,
body {
    height: 100%;
}

.top-card {
    font-size: 0.875rem;
    background: linear-gradient(to right, #c33764, #1d2671);
    border-radius: 10px;
    border-color: #0e1525;
}

.card-header {
    text-transform: uppercase;
    background-color: #1c2333;
}

.bg-theme {
    background-color: #0e1525;
    border-color: rgb(148, 148, 148);
    color: white;
}

/* Table */
.table {
    background-color: #0e1525;
    /* Background color for the whole table */
}

.table th {
    background-color: #0e1525;
    /* Header background color */
    color: white;
    /* Header text color */
}

.table td {
    background-color: #0e1525;
    color: white;
    /* Row background color */
}

.table tr:nth-child(even) td {
    background-color: #0e1525;
    /* Even row background color */
}
