.admin-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.admin-controls button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
    border: none;
}

.admin-controls button:hover {
    opacity: 1;
    transform: scale(1.1);
}

.delete-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.3s ease;
    border: none;
    background-color: #dc3545;
    color: white;
}

.edit-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.3s ease;
    border: none;
    background-color: #ffc107;
    color: #212529;
}

.delete-btn:hover,
.edit-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Estilos para el formulario de edición */
.edit-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.edit-form .form-control {
    margin-bottom: 15px;
}

.edit-form label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}