/* ================= RESET & BASICS ================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    background: #f4f6fb;
    color: #222;
}

/* ================= PAGE FULL WIDTH ================= */
.page {
    width: 100%;
    max-width: 100%;
    padding: 20px;
}

/* ================= TITLE ================= */
.title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #2b2f77;
}

/* ================= CARD REMOVED ================= */
.card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

/* ================= SIMPLE LIST ================= */
.list {
    width: 100%;
    background: #ffffff;
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* LIST ITEM */
.list-item {
    padding: 12px 10px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
    cursor: pointer;
}

.list-item:hover {
    background: #f0eaff;
}

/* LAST ITEM BORDER REMOVE */
.list-item:last-child {
    border-bottom: none;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 600px) {
    .title {
        font-size: 22px;
    }

    .list-item {
        font-size: 13px;
        padding: 10px 8px;
    }
}

/* ================= EXTRA SMALL DEVICES ================= */
@media (max-width: 400px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .card-btn {
        padding: 16px;
    }
}