body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f6f9;
}

header {
    background: #4a90e2;
    color: white;
    padding: 20px;
    text-align: center;
}

.floating-text {
    margin: 0;
}

main {
    max-width: 900px;
    margin: 20px auto;
    padding: 10px;
}

.card {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

button {
    padding: 10px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #357ac9;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.action-btn {
    margin-right: 5px;
    padding: 5px 8px;
    font-size: 12px;
    border-radius: 5px;
}

.edit {
    background: orange;
    color: white;
}

.delete {
    background: red;
    color: white;
}