
    .side-panel {
        position: fixed;
        right: -400px;
        top: 56px; /* Altura del navbar de Bootstrap */
        width: 400px;
        height: calc(100vh - 56px); /* Altura total menos el navbar */
        background-color: #f8f9fa;
        box-shadow: -2px 0 5px rgba(0,0,0,0.5);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1050;
        display: flex;
        flex-direction: column;
    }

    .side-panel.show {
        right: 0;
    }

    .side-panel-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        border-bottom: 1px solid #dee2e6;
        background-color: white;
        flex-shrink: 0;
    }

    .side-panel-header h5 {
        margin: 0;
        color: #495057;
        font-weight: 600;
    }

    .side-panel-close {
        background: none;
        border: none;
        font-size: 1.25rem;
        color: #6c757d;
        cursor: pointer;
        padding: 0.25rem;
        border-radius: 50%;
        width: 2rem;
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }

    .side-panel-close:hover {
        background-color: #e9ecef;
        color: #495057;
    }

    .side-panel-content {
        flex: 1;
        padding: 1rem;
        overflow-y: auto;
    }

    .close-panel {
      font-size: 24px;
      font-weight: bold;
      cursor: pointer;
      position: absolute;
      top: 10px;
      right: 15px;
  }
