﻿@media only screen and (min-width: 1920px) {
  .ui.leave-request.small.modal {
    width: 680px;
  }
}

.leave-request-text-area {
  border: 1px solid rgba(34, 36, 38, 0.15);
  border-radius: 0.285714rem;
}

.ui.toggle.checkbox label:before,
.ui.toggle.checkbox label:hover:before {
  background-color: lightgrey;
}

.ui.toggle.checkbox input:checked ~ label:before {
  background-color: #87C7AA !important;
}

.ui.toggle.checkbox input:focus:checked ~ label:before {
  background-color: #5BA986 !important;
}

div.label-request-popup {
  display: flex !important;
  justify-content: center;
  flex-direction: column;
}

.operation-dropdown {
  width: 100%;
}

.description-text-area {
  max-height: 150px;
  min-height: 4em;
  min-width: 100%;
  max-width: 100%;
}

.pick-operation-button {
  background: none;
  border: none;
}
.leave-balance-info-button {
    width: 26px;
    height: 26px;
    border: 3px solid white;
    color: white;
    border-radius: 3px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 11px;
}

    .leave-balance-info-button:hover {
        background-color: #214F6D;
    }

.leave-balance-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.leave-balance-modal .modal-content {
    background-color: #5782A0;
    margin-top: 160px;
    margin-bottom: 0px;
    margin-left: 150px;
    margin-right: 130px;
    padding: 20px;
    border-radius: 5px;
    width: 60%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.balance-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 4px;
    overflow: hidden;
}

    .balance-table thead {
        background-color: grey;
        color: white;
    }

    .balance-table tbody {
        background-color: white;
    }

    .balance-table th {
        padding: 8px;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }

    .balance-table td {
        padding: 8px;
        text-align: center;
        border-bottom: 1px solid #ddd;
        color: black;
    }

.balance-header {
    margin-bottom: 20px;
    text-align: center;
}
.ui.grid.request-popup-grid > .row {
  padding-bottom: 0;
}