canvas {
    cursor: pointer;
    margin-top: 10px;
}
body {
    background-color: #000000;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}
.clock-container {
margin-top: 10px;
margin-bottom: 50px;
height: 500px; /* Set a fixed height for the clock container */
overflow: show; /* Hide any overflowed content */
}
.clock-content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
height: 100%; /* Occupy full height of the container */
}
.no-select {
user-select: none;
}
.readoutPanel {
    position: relative;
    background-color: rgba(0,0,0,0.7);
    color: blue;
    font-family: Arial, sans-serif;
    z-index: 100;
}
.table-wrapper {
    width: 100%;
    overflow: auto;  /* Allows scrolling */
    max-width: 100%; /* Ensures the panel does not go off-screen */
}
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    color: #00ff00;
    font-family: Arial, sans-serif;
}
/* Media query for screens smaller than 600px */
@media (max-width: 600px) {
    .table {
        overflow-x: scroll; /* Enables horizontal scrolling */
    }
}

.th, td {
    padding: 10px;
    text-align: left;
}

.blank-col {
    border: none;
}

.siddhi {
    color: royalblue;
}

.gift {
    color: green;
}

.shadow {
    color: red;
}

.reactive {
    color: darkred;
}

.repressive {
    color: darkgreen;
}

.imagePanel {
    position: relative;
    padding: 10px;
    background-color: rgba(0,0,0,0.7);
    z-index: 100;
    font-family: Arial, sans-serif;
    color: white;
}
.imagePanel img {
    filter: invert(1);
    padding-top: 5px;
    width: 80px;  /* Fixed width */
    height: 87px;  /* Fixed height */
}
