.nc-separator {
  margin: 0.5rem 0 0.5rem 0;
  border-bottom: 1px solid rgba(204, 204, 204, 0.35);
}

.nc-text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nc-img-squere-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  /* Esta propriedade define a altura como 100% da largura */
  overflow: hidden;
}

.nc-img-squere-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  /* Esta propriedade garante que a altura seja igual à largura */
  object-fit: cover;
  /* Isso permite que a imagem cubra todo o espaço */
  object-position: top;
  border-radius: 5px;
}

.nc-ag {
  width: 100%;
  overflow: auto;
}

.nc-ag-content > div {
  min-width: 315px;
  overflow: hidden;
}

.nc-ag-cell {
  min-width: 45px;
  width: 14.28%;
  margin: 0;
  padding: 0;
  border: 1px solid #dee2e6;
  background-color: white;
  overflow: hidden;
  float: left;
}

.nc-ag-cell > div {
  height: 100%;
  padding: 4px;
  border: 2px solid transparent;
}

.nc-ag-head .nc-ag-cell {
  height: 24px;
  line-height: 23px;
  font-size: 1.1rem;
  text-align: center;
}

.nc-ag-line .nc-ag-cell {
  height: 80px;
}

.nc-ag-cell + .nc-ag-cell {
  border-right: none;
}

.nc-ag-head + .nc-ag-line .nc-ag-cell {
  border-top: none;
}

.nc-ag-line + .nc-ag-line .nc-ag-cell {
  border-top: none;
}

.nc-ag-cell:first-child {
  border-right: none;
}

.nc-ag-cell:last-child {
  border-right: 1px solid #dee2e6;
}

.nc-ag-cell-nb {
  border-left: none;
  border-right: none;
}

.dark-mode .nc-ag-cell {
  border-color: #6c757d;
  background-color: #343a40;
}

.nc-ag-day {
  margin-bottom: 2px;
  overflow: hidden;
}

.nc-ag-day > div {
  width: 20px;
  height: 20px;
  line-height: 19px;
  border-radius: 50%;
  font-size: 1.1rem;
  text-align: center;
  float: right;
}

.dark-mode .nc-ag-day > div {
}

.nc-ag-res,
.nc-ag-fin,
.nc-ag-can {
  min-width: 10px;
  height: 14px;
  line-height: 14px;
  margin-bottom: 2px;
  color: white;
  font-size: 12px;
  text-align: left;
  overflow: hidden;
}

.nc-ag-res div,
.nc-ag-fin div,
.nc-ag-can div {
  height: 100%;
  padding: 0 2px;
  border-radius: 2px;
}

.nc-ag-res div {
  background-color: #007bff;
}

.nc-ag-fin div {
  background-color: #28a745;
}

.nc-ag-can div {
  background-color: #dc3545;
}

.nc-ag-blue {
  color: #007bff;
  cursor: pointer;
}

.nc-ag-blue:hover > div {
  border-color: #007bff;
}

.dark-mode .nc-ag-blue div div div {
  color: white;
  background-color: #007bff;
}

.dark-mode .nc-ag-blue:hover > div {
  border-color: #6c757d;
}

.nc-ag-red {
  color: #dc3545;
}

.nc-ag-red:hover > div {
  border-color: #dc3545;
}

.dark-mode .nc-ag-red div div div {
  color: white;
  background-color: #e74c3c;
}

.dark-mode .nc-ag-red:hover > div {
  border-color: #6c757d;
}

.nc-ag-orange {
  color: #ffc107;
  cursor: pointer;
}

.nc-ag-orange:hover > div {
  border-color: #ffc107;
}

.dark-mode .nc-ag-orange div div div {
  color: white;
  background-color: #f39c12;
}

.dark-mode .nc-ag-orange:hover > div {
  border-color: #6c757d;
}

.nc-ag-hora {
  padding: 0 5px;
  background-color: white;
}

.dark-mode .nc-ag-hora {
  background-color: #343a40;
}

/* Menu deslizante */
.nc-app-item-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transition: left 0.3s ease;
}

.dark-mode .nc-app-item-menu {
  background-color: #3f474e;
}

.nc-app-item-menu-collapsed {
  left: calc(100% - 18px) !important;
}

.nc-app-item-menu > button {
  width: 18px;
  height: 100%;
  padding: 5px;
  float: left;
}

.nc-app-item-menu > div {
  width: calc(100% - 18px);
  height: 100%;
  text-align: right;
  float: left;
}

.nc-app-item-menu > div button {
  width: 14.28%;
  height: 100%;
  line-height: 14px;
  margin-left: 5px;
  padding: 5px;
}

/* Menu deslizante */
