#admin-log-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

#admin-log-modal .modal-content {
    background: #fff;
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

#admin-log-modal .modal-header {
    background: #cc0000 !important;
    color: #ffffff !important;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#admin-log-modal .modal-header h3 {
    color: #ffffff !important;
    margin: 0;
}

#admin-log-modal .close-modal {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

#admin-log-modal .modal-body {
    padding: 20px;
    overflow-y: auto;
}

#admin-log-modal table {
    width: 100%;
    border-collapse: collapse;
}

#admin-log-modal th, #admin-log-modal td {
    border-bottom: 1px solid #eee;
    padding: 10px;
    text-align: left;
    font-size: 13px;
}

#admin-log-modal th {
    background: #f8f9fa;
    position: sticky;
    top: 0;
}

#admin-log-modal tr:hover {
    background: #fdf2f2;
}

#admin-log-modal a {
    color: #c00;
    text-decoration: none;
    font-weight: 600;
}
