﻿.admin-container {
    display: flex;
    height: 100vh;
    background: #121212;
    color: #ffffff;
    
}

.sidebar {
    width: 250px;
    background: #1e1e1e;
    padding-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 0px;
}

    .sidebar .logo {
        font-size: 22px;
        margin-bottom: 20px;
        color: #4cafef;
    }

    .sidebar .menu {
        list-style: none;
        padding: 0;
    }

        .sidebar .menu li {
            padding: 12px;
            cursor: pointer;
            transition: background 0.3s;
        }

            .sidebar .menu li:hover,
            .sidebar .menu li.active {
                background: #333333;
                border-radius: 6px;
            }

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #181818;
    overflow-y: auto;
    overflow-x:auto;
}

.topbar {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
    background: #202020;
    border-bottom: 1px solid #333;
}

.page-container {
    padding: 20px;
}

.card {
    background: #242424;
    padding-top: 20px;
    border-radius: 8px;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

    .custom-table th, .custom-table td {
        padding: 12px;
        border-bottom: 1px solid #333;
        text-align: left;
    }

.btn-add, .btn-save, .btn-edit, .btn-delete {
    background: #4cafef;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.btn-edit {
    background: #ff9800;
}

.btn-delete {
    background: #f44336;
}

.btn-save {
    background: #4caf50;
}
.table-logs 
{
    font-size: 13px;
}
.table-logs th, .table-logs td
{
        padding: 8px;
}
.table-wrapper {
    width: 100%;
    overflow: hidden;
}

    .table-wrapper table {
        width: 100%;
        table-layout: fixed;
        border-collapse: collapse;
    }

    .table-wrapper th,
    .table-wrapper td {
        max-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding: 8px 10px;
        vertical-align: middle;
        text-align:left;
    }
    .table-wrapper .col-actions {
        width: 120px;
        min-width: 120px;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        text-align: center;
    }
    .table-wrapper .col-status {
        width: 90px;
        min-width: 90px;
        text-align: center;
        overflow: visible;
        text-overflow: clip;
    }
    .table-wrapper th.sortable {
        cursor: pointer;
        user-select: none;
    }
.label-cell {
    background-color: #343a40;
    color: white;
    font-weight: 600;
    width: 40%;
    white-space: nowrap;
}

.value-cell {
    background-color: #ffffff;
    color: #000;
    word-break: break-word;
}

.custom-info-table .label-cell {
    background-color: #343a40;
    color: white;
    font-weight: 600;
    width: 40%;
    white-space: nowrap;
}

.custom-info-table .value-cell {
    background-color: #ffffff;
    color: #000;
    word-break: break-word;
}
.table > :not(caption) > * > * {
    background-color: #1e1e1e !important;
}