body {
    background: #0f1115;
    font-family: Arial, sans-serif;
    color: #ddd;
}

.container {
    width: 95%;
    margin: 30px auto;
}

h2 {
    margin-bottom: 10px;
}

/* FILTER */
.filter {
    margin-bottom: 12px;
}

.filter button {
    background: #1a1f2b;
    color: #ddd;
    border: 1px solid #333;
    padding: 6px 12px;
    margin-right: 6px;
    border-radius: 4px;
    cursor: pointer;
}

.filter button.active,
.filter button:hover {
    background: #007bff;
    border-color: #007bff;
}

/* TABLE */
.table {
    width: 100%;
    border-collapse: collapse;
    background: #141821;
    border-radius: 6px;
    overflow: hidden;
}

.table th {
    background: #161a22;
    text-align: left;
    padding: 10px;
    font-weight: bold;
}

.table td {
    padding: 10px;
    border-top: 1px solid #222;
    vertical-align: middle;
}

.table tr:hover {
    background: #1a1f2b;
}

.url {
    color: #9cc4ff;
    font-size: 13px;
    word-break: break-all;
}

.status {
    font-weight: bold;
}

.status-calling { color: #17a2b8; }
.status-retry   { color: #f5c542; }
.status-error   { color: #ff5c5c; }
.status-success { color: #4cd964; }

.actions button {
    background: transparent;
    border: 1px solid #333;
    color: #ddd;
    padding: 4px 8px;
    margin-right: 4px;
    border-radius: 4px;
    cursor: pointer;
}

.actions button:hover {
    background: #222;
}

/* ===== START BUTTON ===== */
.btn-start {
    background: linear-gradient(135deg, #2d6cdf, #1f4fbf);
    color: #fff;
    border: none;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    transition: all 0.2s ease;
    margin-bottom: 12px;
}

.btn-start:hover {
    background: linear-gradient(135deg, #3a7bfd, #275bd6);
    transform: translateY(-1px);
}

.btn-start:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.btn-start:disabled {
    background: #444;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.container h2 {
    display: inline-block;
    margin-right: 12px;
}

.btn-start {
    vertical-align: middle;
}

.summary {
    margin: 8px 0;
    font-size: 14px;
}

.summary b {
    color: #4caf50;
}
.notify {
    margin-top: 10px;
    color: #0d6efd;
    font-weight: bold;
}