.content {
    --tw-bg-opacity: 1;
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    background-color: rgba(241, 245, 248, var(--tw-bg-opacity));
    border-radius: 1.3rem;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    flex: 1 1 0%;
    min-height: 100vh;
    min-width: 0;
    padding: 40px 22px;
    padding-bottom: 2.5rem;
}
.status-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 9999px;
    border: none;
    cursor: default;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
}

.status-button:hover {
    opacity: 0.95;
    transform: scale(1.02);
}

.status-paused {
    background-color: #FEF3C7;
    color: #92400E;
}

.status-active {
    background-color: #D1FAE5;
    color: #065F46;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    background-color: #f3f4f6;
    color: #374151;
    padding: 8px 12px;
    margin: 0 4px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background-color: #4f46e5;
    color: #ffffff;
    transform: scale(1.05);
    border-color: #4f46e5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background-color: #4f46e5;
    color: #ffffff;
    border-color: #4f46e5;
    font-weight: 600;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    background-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    border-color: #e5e7eb;
}

.dataTables_wrapper .dataTables_info {
    font-size: 14px;
    color: #4b5563;
    font-weight: 500;
    padding: 8px 0;
}

.dataTables_wrapper .dataTables_length select {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 14px;
    color: #374151;
    background-color: #ffffff;
    transition: all 0.2s ease-in-out;
}

.dataTables_wrapper .dataTables_length select:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    outline: none;
}

.shadow-card {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.table-header {
    background-color: #f9fafb;
    font-weight: 600;
    color: #1f2937;
}

.table-row:hover {
    background-color: #f9fafb;
}
/* CSS cho bảng lịch sử cron job */
.cron-history-container {
    width: 100%;
    margin-top: 20px;
}
.cron-history-container table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.cron-history-container th,
.cron-history-container td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    word-wrap: break-word;
}
.cron-history-container th {
    background-color: #4f46e5;
    color: white;
    font-weight: bold;
}
.cron-history-container td {
    background-color: #fff;
}
.cron-history-container .btn {
    padding: 8px 16px;
    font-size: 14px;
}
@media (max-width: 768px) {
    .cron-history-container {
        overflow-x: auto;
    }
    .cron-history-container table {
        min-width: 600px;
    }
}