/* Log.css */

.log-container {
    padding: 6px;
    border-radius: 8px;
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: rgb(248, 249, 249) !important;
}

.log-container:hover {
    background-color: rgb(240, 242, 245) !important;
}

.log-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 8px;
}

.log-content.expanded {
    background-color: rgb(240, 242, 245) !important;
}

.log-basic-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.log-text-container {
    display: flex;
    flex-direction: column;
}

.log-main-text {
    margin: 0;
}

.log-timestamp {
    font-size: 14px;
    margin: 0;
}

.log-arrow {
    width: 20px;
    height: 20px;
}

.log-details {
    transition: max-height 0.5s ease;
    overflow: hidden;
}

.log-details-content {
    padding: 15px 25px;
}