/* ===== GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #0b1220;
    color: #ffffff;
    padding: 40px;
}

/* ===== TITLE ===== */
h1 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* ===== SEARCH BAR ===== */
input[type="search"] {
    width: 100%;
    max-width: 600px;
    padding: 14px 18px;
    margin-bottom: 30px;
    background-color: #1a2333;
    border: 1px solid #2a3448;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
}

input[type="search"]::placeholder {
    color: #7c8aa5;
}

input[type="search"]:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

/* ===== TABLE CONTAINER ===== */
.marches {
    width: 100%;
    border-collapse: collapse;
    background-color: #111827;
    border-radius: 12px;
    overflow: hidden;
}

/* ===== TABLE HEADER ===== */
.marches th {
    text-align: left;
    padding: 16px;
    background-color: #1f2937;
    color: #9ca3af;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid #2a3448;
}

/* ===== TABLE ROWS ===== */
.marches td {
    padding: 18px 16px;
    border-bottom: 1px solid #1f2937;
    font-size: 15px;
}

.marches tr {
    transition: background 0.2s ease;
}

.marches tr:hover {
    background-color: #1a2333;
}

/* ===== FIRST COLUMN (#) ===== */
.marches td:first-child {
    color: #9ca3af;
    width: 60px;
}

/* ===== PRICE COLUMN STYLE ===== */
.marches td:last-child {
    font-weight: 500;
    color: #3b82f6;
}

/* ===== CARD EFFECT (like dashboard box) ===== */
.marches {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
