html {
    padding: 0;
    margin: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #191F30;
    color: white;
    position: relative;
    margin: 0;
    padding: 0;
}

.header {
    width: 100%;
    position: fixed;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    background-color: #131417;
    box-sizing: border-box;
    padding-top: 15px;
    padding-bottom: 15px;
}

.search-box {
    padding: 15px;
    background-color: #2a2d32;
    border-radius: 8px;
    color: white;
    border: none;
    width: 95%;
    max-width: 600px;
    font-size: 16px;
    box-sizing: border-box;
}

.log-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 90px;
    padding-left: 10px;
    padding-right: 10px;
}

.log-item {
    background: #1c1e22;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #F6AA49;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease-in-out;
    position: relative;
    cursor: pointer;
}

.log-item:hover {
    background: #2a2d32;
}

.log-content {
    font-size: 14px;
}

.log-content strong {
    color: #F6AA49;
}

.log-item .date {
    font-size: 12px;
    color: #F6AA49;
    align-self: flex-start;
    margin-left: auto;
}

#loadingIndicator {
    display: none;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #F6AA49;
    color: black;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

/* Modal Popup */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #1c1e22;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #F6AA49;
    border-radius: 12px;
    width: 80%;
    max-width: 600px;
    color: white;
}

.close {
    color: #F6AA49;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #fff;
}

@media (max-width: 600px) {
    .log-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .log-item .date {
        margin-left: 0;
        align-self: flex-end;
    }
}