a.gpm-option-button {
    background: transparent;
    border: 2px solid white;
    display: block;
    padding: 10px;
    border-radius: 6px;
    color: white !important;
    text-decoration: none !important;
    margin-bottom: 20px;
}

button {
    background: transparent !important;
    color: white !important;
    border: 2px solid #fff;
    padding: 10px 25px !important;
}

.user-table { width: 100%; border-collapse: collapse; }
.user-table th, .user-table td { border: 1px solid #ccc; padding: 8px; text-align: left; }
.user-table th { background-color: transparent; }
.password-form { display: flex; gap: 5px; }
.password-form input[type="password"] { flex-grow: 1; padding: 5px; }

.gpm-form-container { margin: 20px auto; padding: 2% 5%; border: 1px solid #ccc; border-radius: 8px; background-color: transparent; }
.gpm-form-field { margin-bottom: 30px; }
.gpm-form-field label { display: block; margin-bottom: 5px; font-weight: bold; }
.gpm-form-field input[type="text"], .gpm-form-field textarea, .gpm-form-field select {
    width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box;
}
.gpm-form-field textarea { height: 100px; }
.gpm-image-controls { display: flex; gap: 10px; margin-bottom: 15px; }
.gpm-image-controls button {
    padding: 10px 15px !important;
    background-color: transparent !important;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    border: 2px solid white;
    width: 50%;
}
.gpm-video-feed { width: 100%; height: auto; max-width: 100%; background-color: #333; border-radius: 4px; }
.gpm-snapshot-btn { background-color: transparent !important; margin-top: 10px; }
.gpm-preview-img { max-width: 100%; height: auto; margin-top: 10px; border: 1px solid #ddd; border-radius: 4px; }
.gpm-message { padding: 0px; border-radius: 4px; margin-bottom: 0px; }
.gpm-success-msg { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; padding: 10px; margin-bottom: 0px !important;}
.gpm-error-msg { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; padding: 10px; margin-bottom: 0px !important;}

#gpm-new-category-fields input { margin-bottom: 10px; }

button.button.button-primary {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 10px;
}

div#gpm-camera-section {
    text-align: center;
}

.gpm-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gpm-gestion-equipo-container {
    max-width: 100%;
    margin: 20px auto;
    background: transparent;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button.button.button-small {
    border: 2px solid white;
}

button#gpm-filter-button {
    width: 100%;
    border: 2px solid white;
}

.gpm-toolbar {
    margin-bottom: 20px;
}
.wp-list-table {
    width: 100%;
    border-collapse: collapse;
}
.wp-list-table th, .wp-list-table td {
    padding: 12px;
    text-align: left;
    vertical-align: middle;
}
.wp-list-table td.column-image img {
    border-radius: 4px;
}
.gpm-status-prestado { color: #dc3232; font-weight: bold; }
.gpm-status-libre { color: #46b450; }
.gpm-status-mantenimiento { color: #f0ad4e; }

button#gpm-edit-close {
    background: red !important;
    border-radius: 7px !important;
    border: 2px solid white;
}

select#gpm-edit-categories {
    height: auto !important;
    max-height: none !important;
}

/* Modal Overlay */
.gpm-modal-overlay {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
.gpm-modal-content {
    background: #060097;
    padding: 30px;
    border-radius: 10px;
    max-width: 60%;
    width: 90%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}
.gpm-modal-footer {
    margin-top: 20px;
    text-align: right;
}
/* Formulario del Modal */
.gpm-form-group {
    margin-bottom: 15px;
}
.gpm-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.gpm-form-group input[type="text"], 
.gpm-form-group input[type="number"],
.gpm-form-group textarea,
.gpm-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
#gpm-edit-status-message {
    float: left;
    padding: 8px;
    border-radius: 4px;
    font-weight: bold;
}