body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 70px;
    background-color: #332e2e;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(133, 8, 8);
}

.title-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: large;
}

.logo {
    width: 80px;
    height: auto;
}

.container h3 {
    text-align: center;
    font-size: x-large;
}

.summary-panel {
    display: flex;
    justify-content: space-between;
    padding: 29px;
    background: #660404;
    color: white;
    border-radius: 16px;
    box-shadow: 0 0 10px #332e2e;
}

.summary-panel div {
    text-align: center;
}

.buttons-container {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}



.btn {
    padding: 10px 10px;
    background-color: #332e2e;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    transition: all 1.5s ease;
}

.btn:hover {
    background-color: #550909;
}

.btn.active {
    color: white;
    background-color: #550909; /* Optional: change background for contrast */
    border-bottom: 5px solid #332e2e;
    box-shadow: 0 0 20px rgb(133, 8, 8);
}

/* Styling for the Item Listing */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

table th, table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #660404;
    color: white;
    text-transform: uppercase;
}

table tr:hover {
    background-color: #f5f5f5;
}

/* Styling for Add Item Form */


button {
    background-color: #332e2e;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #660404;
}

.live-time {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1rem;
    font-weight: bold;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
    user-select: none;
    animation: pulse 2s infinite alternate;
    z-index: 1000;
    text-align: center;
    line-height: 1.4;
}

@keyframes pulse {
    from {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    to {
        box-shadow: 0 8px 16px rgba(106, 142, 251, 0.4);
    }
}

/* Make sure the container position is relative */
.container {
    position: relative;
    /* Keep your existing container styles */
}

.search-container {
    margin-bottom: 20px;
}

#returnSearch {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.highlight {
    background-color: #FFFF00;
    font-weight: bold;
}

