body {
    font-family: 'Segoe UI', sans-serif;
    background: #f8fafc;
    color: #1e293b;
}

h1 {
    text-align: center;
    margin: 30px 0;
    color: #2563eb;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

.form {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

input, select {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #cbd5f5;
    font-size: 14px;
}

.fav-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    font-size: 14px;
}

button {
    width: 100%;
    padding: 12px;
    background: #3b82f6;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    background: #2563eb;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

th {
    background: #3b82f6;
    color: white;
    padding: 12px;
}

td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

tr:hover {
    background: #f1f5f9;
}

.edit {
    background: #22c55e;
    margin-right: 5px;
}

.delete {
    background: #ef4444;
}

.fav-active {
    color: #f59e0b;
    font-weight: bold;
}