/* Estilos específicos para el módulo de Tiempo Mantenimientos */

/* Panel de estadísticas específico para tiempo-mantenimientos */
#sgt-tiempo-mantenimientos-dashboard .sgt-stats-panel {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

#sgt-tiempo-mantenimientos-dashboard .sgt-stat-card {
    background: #f8f9fa;
    color: #212529;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 180px;
    transition: transform 0.3s ease;
}

#sgt-tiempo-mantenimientos-dashboard .sgt-stat-icon {
    background: #6c757d;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

#sgt-tiempo-mantenimientos-dashboard .sgt-stat-content {
    flex: 1;
}

#sgt-tiempo-mantenimientos-dashboard .sgt-stat-number {
    font-size: 20px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 4px;
}

#sgt-tiempo-mantenimientos-dashboard .sgt-stat-label {
    color: #495057;
    font-size: 13px;
}

/* Filtros específicos para tiempo mantenimientos */
#sgt-tiempo-mantenimientos-dashboard .sgt-filters {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

#sgt-tiempo-mantenimientos-dashboard .sgt-filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Centrar verticalmente el grupo del botón de limpiar filtros */
#sgt-tiempo-mantenimientos-dashboard .sgt-filter-group:has(#sgt-clear-filters) {
    justify-content: center;
    align-items: center;
}

/* Botones de filtro por tipo */
#sgt-tiempo-mantenimientos-dashboard .sgt-tipo-filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

#sgt-tiempo-mantenimientos-dashboard .sgt-tipo-filter-btn {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
    min-width: 80px;
    justify-content: center;
}

#sgt-tiempo-mantenimientos-dashboard .sgt-tipo-filter-btn:hover {
    border-color: #28a745;
    background: #f8fff9;
    transform: translateY(-1px);
}

#sgt-tiempo-mantenimientos-dashboard .sgt-tipo-filter-btn.active {
    background: #28a745;
    border-color: #28a745;
    color: white;
    box-shadow: 0 2px 4px rgba(40,167,69,0.3);
}

#sgt-tiempo-mantenimientos-dashboard .sgt-filter-group label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

#sgt-tiempo-mantenimientos-dashboard .sgt-filter-group select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    min-width: 150px;
}

/* Botones específicos del módulo */
.sgt-new-tiempo-button {
    background: #28a745;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.sgt-new-tiempo-button:hover {
    background: #218838;
    transform: translateY(-2px);
}

.sgt-secondary-button {
    background: #6c757d;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.sgt-secondary-button:hover {
    background: #545b62;
}

/* Clases de rentabilidad específicas */
.rentabilidad-positiva {
    color: #28a745;
    font-weight: bold;
}

.rentabilidad-negativa {
    color: #dc3545;
    font-weight: bold;
}

.rentabilidad-neutral {
    color: #ffc107;
    font-weight: bold;
}

/* Badges de tipo de actividad */
.tipo-actividad-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.tipo-llamada {
    background: #e3f2fd;
    color: #1976d2;
}

.tipo-anydesk {
    background: #f3e5f5;
    color: #7b1fa2;
}

.tipo-presencial {
    background: #e8f5e8;
    color: #388e3c;
}

.tipo-otro {
    background: #fff3e0;
    color: #f57c00;
}


/* Tabla específica para tiempo-mantenimientos */
#sgt-tiempo-mantenimientos-dashboard .sgt-table-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

#sgt-tiempo-mantenimientos-dashboard .sgt-table-container h3 {
    background: #343a40;
    color: white;
    margin: 0;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#sgt-tiempo-mantenimientos-dashboard .sgt-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

#sgt-tiempo-mantenimientos-dashboard .sgt-table th {
    background: #e9ecef;
    color: #495057;
    padding: 15px 10px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    border-bottom: 2px solid #ced4da;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#sgt-tiempo-mantenimientos-dashboard .sgt-table td {
    padding: 10px;
    border-bottom: 1px solid #dee2e6;
    vertical-align: top;
}

/* Hover específico para tablas de tiempo-mantenimientos - solo fila completa */
#sgt-tiempo-mantenimientos-dashboard .sgt-table tr:hover {
    background: #ffebee !important;
}

/* Evitar hover individual en celdas */
#sgt-tiempo-mantenimientos-dashboard .sgt-table td:hover {
    background: inherit !important;
}

#sgt-tiempo-mantenimientos-dashboard .sgt-table td:not(.sgt-acciones):not(.sgt-estado):hover::after {
    display: none !important;
}

/* Modal específico para tiempo mantenimientos */
#sgt-tiempo-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
}

#sgt-tiempo-modal .sgt-modal-content {
    background-color: white;
    margin: 3% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 650px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#sgt-tiempo-modal .sgt-modal-header {
    background: linear-gradient(135deg, #dc143c 0%, #b22234 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(220,20,60,0.2);
}

#sgt-tiempo-modal .sgt-modal-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    color: white !important;
}

#sgt-tiempo-modal .sgt-modal-header h3 i {
    color: white !important;
}

#sgt-tiempo-modal .sgt-close-modal {
    cursor: pointer;
    font-size: 26px;
    font-weight: bold;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sgt-tiempo-modal .sgt-close-modal:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

/* Formulario del modal */
#sgt-tiempo-form {
    padding: 30px;
}

/* Grupos de formulario mejorados */
#sgt-tiempo-form .sgt-form-group {
    margin-bottom: 25px;
}

#sgt-tiempo-form .sgt-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

#sgt-tiempo-form .sgt-form-group input,
#sgt-tiempo-form .sgt-form-group select,
#sgt-tiempo-form .sgt-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: #fafbfc;
}

#sgt-tiempo-form .sgt-form-group input:focus,
#sgt-tiempo-form .sgt-form-group select:focus,
#sgt-tiempo-form .sgt-form-group textarea:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40,167,69,0.1);
    background: white;
    transform: translateY(-1px);
}

#sgt-tiempo-form .sgt-form-group textarea {
    resize: vertical;
    min-height: 90px;
    font-family: inherit;
}

/* Fila de formulario para campos lado a lado */
#sgt-tiempo-form .sgt-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

#sgt-tiempo-form .sgt-form-half {
    flex: 1;
    margin-bottom: 0;
}

/* Botones de tipo de actividad */
#sgt-tiempo-form .sgt-tipo-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 5px;
}

#sgt-tiempo-form .sgt-tipo-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #495057;
    min-height: 60px;
}

#sgt-tiempo-form .sgt-tipo-btn:hover {
    border-color: #28a745;
    background: #f8fff9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(40,167,69,0.15);
}

#sgt-tiempo-form .sgt-tipo-btn.active {
    background: #28a745;
    border-color: #28a745;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40,167,69,0.3);
}

#sgt-tiempo-form .sgt-tipo-btn i {
    font-size: 18px;
}

#sgt-tiempo-form .sgt-tipo-btn span {
    font-weight: 600;
}

/* Botones de clientes frecuentes */
#sgt-tiempo-form .sgt-cliente-frecuentes {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

#sgt-tiempo-form .sgt-cliente-btn {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #1976d2;
    flex: 1;
    min-width: 0;
    justify-content: center;
}

#sgt-tiempo-form .sgt-cliente-btn:hover {
    background: #2196f3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(33,150,243,0.3);
}

#sgt-tiempo-form .sgt-cliente-btn.active {
    background: #2196f3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33,150,243,0.4);
}

/* Botones de duración rápida */
#sgt-tiempo-form .sgt-duracion-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

#sgt-tiempo-form .sgt-duracion-btn {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
    min-width: 50px;
}

#sgt-tiempo-form .sgt-duracion-btn:hover {
    border-color: #007bff;
    background: #e7f3ff;
    transform: translateY(-1px);
}

#sgt-tiempo-form .sgt-duracion-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
    box-shadow: 0 2px 4px rgba(0,123,255,0.3);
}

/* Input group con botones + y - */
#sgt-tiempo-form .sgt-duracion-input-group {
    display: flex;
    align-items: center;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    background: white;
}

#sgt-tiempo-form .sgt-duracion-input-group input {
    border: none;
    outline: none;
    padding: 10px 12px;
    text-align: center;
    flex: 1;
    font-size: 14px;
    background: transparent;
}

/* Ocultar flechitas nativas del input number */
#sgt-tiempo-duracion::-webkit-outer-spin-button,
#sgt-tiempo-duracion::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

#sgt-tiempo-duracion {
    -moz-appearance: textfield;
}

/* Botones de incremento/decremento separados */
#sgt-tiempo-form .sgt-duracion-increment-1,
#sgt-tiempo-form .sgt-duracion-decrement-1 {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 14px;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 50px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,123,255,0.3);
}

#sgt-tiempo-form .sgt-duracion-increment-5,
#sgt-tiempo-form .sgt-duracion-decrement-5 {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 14px;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 50px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(40,167,69,0.3);
}

#sgt-tiempo-form .sgt-duracion-increment-1:hover,
#sgt-tiempo-form .sgt-duracion-decrement-1:hover {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(220,53,69,0.4);
}

#sgt-tiempo-form .sgt-duracion-increment-5:hover,
#sgt-tiempo-form .sgt-duracion-decrement-5:hover {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255,193,7,0.4);
}

#sgt-tiempo-form .sgt-duracion-increment-1:active,
#sgt-tiempo-form .sgt-duracion-decrement-1:active,
#sgt-tiempo-form .sgt-duracion-increment-5:active,
#sgt-tiempo-form .sgt-duracion-decrement-5:active {
    transform: translateY(0px) scale(0.95);
}

#sgt-tiempo-form .sgt-cliente-btn i {
    font-size: 12px;
}

#sgt-tiempo-form .sgt-cliente-btn span {
    font-weight: 700;
    text-transform: uppercase;
}

/* Checkbox personalizado */
#sgt-tiempo-form .sgt-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #fafbfc;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #495057;
}

#sgt-tiempo-form .sgt-checkbox-label:hover {
    border-color: #28a745;
    background: #f8fff9;
}

#sgt-tiempo-form .sgt-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #28a745;
}

/* Botones del formulario mejorados */
#sgt-tiempo-form .sgt-form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 25px;
    border-top: 2px solid #f1f3f4;
    margin-top: 30px;
}

#sgt-tiempo-form .sgt-secondary-button {
    background: #6c757d;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

#sgt-tiempo-form .sgt-secondary-button:hover {
    background: #545b62;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108,117,125,0.3);
}

#sgt-tiempo-form .sgt-primary-button {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(40,167,69,0.2);
}

#sgt-tiempo-form .sgt-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40,167,69,0.3);
}

#sgt-tiempo-form .sgt-primary-button:active {
    transform: translateY(0);
}

/* Botón de borrar */
#sgt-tiempo-form .sgt-danger-button {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220,53,69,0.2);
}

#sgt-tiempo-form .sgt-danger-button:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71d2a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220,53,69,0.3);
}

#sgt-tiempo-form .sgt-danger-button:active {
    transform: translateY(0);
}

/* Botones de acción en tablas */
.sgt-btn-icon {
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 2px;
    transition: all 0.3s ease;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sgt-btn-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.sgt-btn-icon:active {
    transform: translateY(0);
}

/* Variantes de colores para botones de acción */
.sgt-btn-icon:hover {
    background: #5a6268;
}

.sgt-btn-icon[title*="Ver"] {
    background: #17a2b8;
}

.sgt-btn-icon[title*="Ver"]:hover {
    background: #138496;
}

.sgt-btn-icon[title*="Editar"] {
    background: #007bff;
}

.sgt-btn-icon[title*="Editar"]:hover {
    background: #0056b3;
}

.sgt-btn-icon.sgt-btn-danger,
.sgt-btn-icon[title*="Eliminar"] {
    background: #dc3545;
}

.sgt-btn-icon.sgt-btn-danger:hover,
.sgt-btn-icon[title*="Eliminar"]:hover {
    background: #c82333;
}

/* Contenedor de botones de acción */
.sgt-action-buttons {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
}

/* Fila activa en tabla resumen */
#sgt-tiempo-resumen-table tbody tr.active {
    background: #ffebee !important;
    border-left: 4px solid #f44336;
}

#sgt-tiempo-resumen-table tbody tr.active td {
    font-weight: 600;
}

/* Hover para las filas de resumen */
#sgt-tiempo-resumen-table tbody tr {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

/* Tooltips deshabilitados */

/* Responsive específico para tiempo-mantenimientos */
@media (max-width: 768px) {
    #sgt-tiempo-mantenimientos-dashboard .sgt-stats-panel {
        flex-direction: column;
    }

    #sgt-tiempo-mantenimientos-dashboard .sgt-stat-card {
        min-width: auto;
    }

    #sgt-tiempo-mantenimientos-dashboard .sgt-filters {
        flex-direction: column;
        align-items: stretch;
    }

    #sgt-tiempo-mantenimientos-dashboard .sgt-filter-group {
        width: 100%;
    }

    #sgt-tiempo-mantenimientos-dashboard .sgt-filter-group select {
        min-width: auto;
        width: 100%;
    }

    #sgt-tiempo-mantenimientos-dashboard .sgt-new-tiempo-button,
    #sgt-tiempo-mantenimientos-dashboard .sgt-secondary-button {
        padding: 10px 16px;
        font-size: 13px;
    }

    #sgt-tiempo-mantenimientos-dashboard .sgt-table {
        font-size: 0.8rem;
    }

    #sgt-tiempo-mantenimientos-dashboard .sgt-table th,
    #sgt-tiempo-mantenimientos-dashboard .sgt-table td {
        padding: 8px 5px;
    }

    #sgt-tiempo-modal .sgt-modal-content {
        width: 95%;
        margin: 5% auto;
        max-width: none;
    }

    #sgt-tiempo-modal .sgt-modal-header {
        padding: 20px;
    }

    #sgt-tiempo-modal .sgt-modal-header h3 {
        font-size: 1.1rem;
    }

    #sgt-tiempo-form {
        padding: 20px;
    }

    #sgt-tiempo-form .sgt-form-row {
        flex-direction: column;
        gap: 0;
    }

    #sgt-tiempo-form .sgt-form-half {
        margin-bottom: 25px;
    }

    /* Botones de tipo en móvil */
    #sgt-tiempo-form .sgt-tipo-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    #sgt-tiempo-form .sgt-tipo-btn {
        padding: 10px 8px;
        min-height: 50px;
        font-size: 11px;
    }

    #sgt-tiempo-form .sgt-tipo-btn i {
        font-size: 16px;
    }

    /* Botones de clientes frecuentes en móvil */
    #sgt-tiempo-form .sgt-cliente-frecuentes {
        flex-direction: column;
        gap: 6px;
    }

    #sgt-tiempo-form .sgt-cliente-btn {
        padding: 10px 12px;
        font-size: 12px;
        justify-content: flex-start;
    }

    #sgt-tiempo-form .sgt-form-actions {
        flex-direction: column;
        gap: 12px;
    }

    #sgt-tiempo-form .sgt-secondary-button,
    #sgt-tiempo-form .sgt-primary-button {
        width: 100%;
        justify-content: center;
    }

    /* Botones de acción en móvil */
    .sgt-btn-icon {
        width: 28px;
        height: 28px;
        font-size: 11px;
        margin: 0 1px;
    }

    .sgt-action-buttons {
        gap: 2px;
    }

    /* Ocultar tooltips en móvil */
    .sgt-btn-icon[title]:hover::after,
    .sgt-btn-icon[title]:hover::before {
        display: none;
    }
}