.custom-navbar{
	background-color: #336699;
	height: 100px;
}

.page-title {
	text-align: center;
	font-size: 3em;
    font-weight: 600;
    color: #1D2D50;
    margin-top: 10px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.custom-select-wrapper {
    position: relative;
    display: inline-block;
    min-width: 150px;
  }

  .custom-select {
    background-color: white;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .custom-select-wrapper img {
    width: 20px;
    height: 14px;
    object-fit: contain;
  }

  .custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    display: none;
    flex-direction: column;
    max-height: 200px;
    overflow-y: auto;
  }

  .custom-select-options div {
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .custom-select-options div:hover {
    background-color: #f1f1f1;
  }

#containerNav {
    align-items: left;
}

#form {
    max-width: 650px;
    align-items: center;
}

input[type="checkbox"] {
    background-color: #cfe2ff;
    font-size: 1.2em;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

button{
	background-color: #336699 !important;
}