.btn-large{
    width: 100%;
    margin-top: 20px;

}

tr:hover {
    background-color: #e0e0e0; 
    cursor: pointer;/* Change this to the desired hover color */
  }

  .example-list {
    width: 500px;
    max-width: 100%;
    border: solid 1px #ccc;
    min-height: 60px;
    display: block;
    background: white;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .example-box {
    padding: 20px 10px;
    border-bottom: solid 1px #ccc;
    color: rgba(0, 0, 0, 0.87);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    cursor: move;
    background: white;
    font-size: 14px;
  }
  
  .cdk-drag-preview {
    box-sizing: border-box;
    border-radius: 4px;
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
                0 8px 10px 1px rgba(0, 0, 0, 0.14),
                0 3px 14px 2px rgba(0, 0, 0, 0.12);
  }
  
  .cdk-drag-placeholder {
    opacity: 0;
  }
  
  .cdk-drag-animating {
    transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
  }
  
  .example-box:last-child {
    border: none;
  }
  
  .example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {
    transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
  }
  
  /* Shrink the datepicker input height */
.mat-form-field-appearance-outline .mat-form-field-outline {
  /* keep outline thickness consistent */
  border-width: 1px;
}

.mat-form-field-wrapper {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.mat-form-field-infix {
  padding: 4px 8px !important; /* reduce vertical padding */
  height: 32px !important;     /* smaller height */
  font-size: 14px;
  box-sizing: border-box;
}

/* Shrink the input itself */
.mat-input-element {
  height: 32px !important;
  padding: 4px 8px !important;
  font-size: 14px;
  box-sizing: border-box;
}

/* Shrink the toggle button (calendar icon) */
.mat-datepicker-toggle {
  height: 32px !important;
  line-height: 32px !important;
  width: 32px !important;
}

/* Center toggle icon vertically */
.mat-datepicker-toggle-default-icon {
  font-size: 20px;
  vertical-align: middle;
  line-height: 32px;
}
