body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}
.container {
    padding: 20px;
}
.header {
    background-color: #084149;
    color: white;
    padding: 10px 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header button {
    background-color: #f9f9f9;
    color: #084149;
    border: none;
    /* padding: 8px 12px; */
    padding: 5px 20px;
    cursor: pointer;
}

.header button:hover {
    background-color:#d0e4e7;
}

button.logout {
    background-color: #d0e4e7;
}

button.logout:hover {
    background-color: #e0f8fc;
}

.menu {
    background-color: #d0e4e7;
    /* padding: 20px;
    width: 20%;
    float: left;
    min-height: 100vh; */
}

.menu button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    background-color: #ffffff;
    cursor: pointer;
}
.menu button:hover {
    background-color: #d0e4e7;
}
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 0 !important;
}

.table th, .table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}

.table th {
    /* background-color: #d0e4e7; */
    background-color: #CDDFE2;
}

.table td {
    font-weight: normal;
}

.actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.actions button {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}
.actions button.update {
    background-color: #fe3602;
    color: #f9f9f9;
}
.actions button.get-data {
    background-color: #084149;
    color: #f9f9f9;
}

.error-success-msg {
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
    color: #842029;
    padding: 12px 16px;
    border-radius: 5px;
    font-size: 14px;
    text-align: left;
    margin-top: 10px;
}

/* dropdown custom */
.set-dropdown .dropdown-toggle{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-width: 158px;
    width: 210px;
}

.set-dropdown .dropdown-toggle:hover.dropdown-toggle::after {
    border-color: #fff !important;
}

.for-min-btn {
   min-width: 130px !important;
   width: 130px !important;
}

.set-dropdown .dropdown-toggle::after {
    content: "";
    position: auto;
    top: 12px;
    right: 1px;
    width: auto;
    height: auto;
    border: solid #333;
    border-width: 0 2px 2px 0;
    padding: 3px;
    transform: rotate(45deg);
    border-radius: 0 0 2px 0;
}

.dropdown-item:hover.set-dropdown .dropdown-toggle::after {
    color:#ffffff;
}

/* budget */
.budget-header button{
  margin-right: 12px;
}

.budget-wrapper .table-scroll-top {
    /* max-height: 413px;   */
    max-height: calc(100vh - 226px)
}