body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f4f6f9;
    margin: 0;
    padding: 20px;
    color: #333;
}

h1, h2 {
    margin-bottom: 15px;
}

button {
    background: #2d89ff;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s ease;
}

button:hover {
    background: #1c6ed6;
}

input, textarea, select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

form {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

table th {
    background: #f0f2f5;
    text-align: left;
    padding: 10px;
    font-size: 13px;
}

table td {
    padding: 10px;
    border-top: 1px solid #eee;
    font-size: 14px;
}

table tr:hover {
    background: #f7f9fc;
    cursor: pointer;
}

.selected {
    background: #e8f1ff;
}

.card {
    background: white;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-size: 14px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.card-actions button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;      /* más grande */
    margin-left: 8px;
    padding: 8px;         /* más área clickeable */
    border-radius: 8px;
    transition: 0.2s ease;
    color: #333;
}

.card-actions button:hover {
    background: #f0f2f5;
    transform: scale(1.1);
}

.card-content p {
    margin: 4px 0;
}

.view-btn { color: #2d89ff; }
.edit-btn { color: #f0ad4e; }
.delete-btn { color: #d9534f; }