/* Body */


.font-4 {
    font-size: 0.4rem;
}
.font-5 {
    font-size: 0.5rem;
}
.font-6 {
    font-size: 0.6rem;
}
.font-7 {
    font-size: 0.7rem;
}
.font-8 {
    font-size: 0.8rem;
}
.font-9 {
    font-size: 0.9rem;
}

.bg-lightGray {
    background-color: aliceblue;
}
.depositSlip tr:last-child {
    font-weight: bold;
}

.bg-light-orange {
    background-color: #ffe6cc; /* Light orange */
}

.bg-light-blue {
    background-color: #cceeff; /* Light blue */
}

.bg-teal {
    background-color: #b2dfdb; /* Light teal */
}
.bg-light-green {
    background-color: #e6ffe6; /* Light green */
}

.bg-black {
    background-color: black;
}

.text-white {
    color: white;
}

.red-text {
    color: red;
  }
  

.overflowClass {
    /* height: 100%; */
    height: 80vh;
    overflow-y: scroll;
    overflow-x: scroll;
}

.bg-text {
    color: lightgrey;
    font-size: 5rem;
    transform: rotate(345deg);
    -webkit-transform: rotate(345deg);
    position: absolute;
    z-index: -1;
}


/* body {
    height:100%;
} */
.container-fluid {
    /* height:100vh; */
    width: 100%;
    margin: 0%;
    background-color: aliceblue;
    /* text-align: center; */
    font-family: Arial, Helvetica, sans-serif;
}


.main-container{

    /* display: block; */
    line-height: 1.5;

 
}


.main-container .left{
    padding: 10px;
    color: #54BAB9;
    /* margin: 5% 2% 5% 5%; */
}

.main-container .left2 {
    padding: 10px;
    color: #54BAB9;
    margin: 5% 2% 5% 5%;
}

.main-container h1{
    font-weight: bold;
    font-size: 2rem;
}



.startHereButton {
    background-color: #54BAB9;
    color: #ffff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;

    display: inline-block;
}


.startHereButton:hover {
    background-color: #9ED2C6;
    /* padding: 20px;
    border-radius: 15px;

    display: inline-block; */
}

.left a {
    color: #ffff;
}

.left a:link {
    text-decoration: none;
}
.left a:hover {
    text-decoration: none;
}

.btn-primary{
    --bs-btn-bg: #54BAB9 !important;
    --bs-btn-border-color: #54BAB9 !important;
}

.bottom-container{
    display: block;
    text-align: center;
    flex-wrap: nowrap !important;
}
.bottom-container a, .bottom-container p{
    padding: 0% 0%;
    color: #54BAB9;
}

.bottom-container p{
    color: #9ED2C6;
    font-weight: bold;
}

.customErrorInline {
    color: red;
    padding-bottom: 1%;
}

#menuLink {
    /* display: inline-block; */
    /* margin: 20px; */
    text-decoration: none;
    /* font-size: 18px; */
    color: #333;
    /* background-color: #ddd; */
    /* padding: 10px 20px; */
    /* border-radius: 5px; */
    transition: background-color 0.3s;
}

#menuLink:hover {
    background-color: #bbb;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(158,210,198, 0.5);
    /* light green with 50% transparency */
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 20;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#menuHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px 10px 20px;
    background-color: #f1f1f1;
    border-bottom: 1px solid #ddd;
}

#menuHeader h2 {
    margin: 0;
}

#closeMenu {
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 10px 10px 10px 20px;
}

#menuContent {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.menuSection {
    margin-bottom: 20px;
}

.menuSection h4 {
    margin-bottom: 10px;

    text-align: left;
}

#menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

#menu ul li {
    margin: 10px 0;
}

#menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
}

#menuFooter {
    padding: 0px 0px 0px 15px;
    background-color: #f1f1f1;
    border-top: 1px solid #ddd;
}

.primary-row {
    background-color: #004080; /* Dark blue */
    color: white; /* Ensure text is readable */
  }
  
  .secondary-row {
    background-color: #add8e6; /* Light blue */
  }

/* Change row color on hover */
.donor-row:hover {
    background-color: #f1f1f1; /* Light gray */
    cursor: pointer; /* Pointer cursor to indicate clickability */
  }
  
  /* Change row color when selected */
  .donor-row.selected {
    background-color: #c8e6c9; /* Light green for selection */
  }

.highlight-orange {
    /* background-color: #FFD580; */
    background-color: #FFD580 !important; /* Light orange */
}

@media (max-width: 1200px) {
    #menu {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #menu {
        width: 100%;
    }
}
