/* Import Poppins from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
    background: #0d1117;
    /* dark gray-blue */
    color: #f5f5f5;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 5% auto;
    background: #161b22;
    /* slightly lighter dark background */
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #2c313a;
    /* subtle border */
}

h1 {
    margin-bottom: 20px;
    color: #f38020;
    /* Cloudflare orange */
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead th {
    text-align: left;
    padding: 12px;
    background: #1f2733;
    /* dark header */
    color: #f5a623;
    /* muted yellow for header text */
    font-weight: 500;
}

td {
    padding: 12px;
    border-bottom: 1px solid #2c313a;
}

td.file-name {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

button {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 5px;
    transition: background 0.2s, opacity 0.2s;
    font-family: 'Poppins', Arial, sans-serif;
}

button.download {
    background: #f38020;
    /* Cloudflare orange */
    color: #fff;
}

button.copy {
    background: #2c313a;
    /* dark gray button */
    color: #f5a623;
    /* muted yellow text */
}

button.copy:hover,
button.download:hover {
    opacity: 0.85;
}

.icon {
    margin-right: 6px;
    vertical-align: middle;
}

tr:hover {
    background: #232a36;
    /* dark hover effect */
}