body.strategies {
    font-family: 'Verdana';
    font-size: 18px;
    background-color: rgb(246, 246, 246);
}

.strategies-title {
    font-weight: 700 !important;
    margin-left: 40px;
    margin-bottom: 30px;
    margin-top: 20px;
}


#strategiesAccordion {
    display: flex;
    flex-direction: column;
    margin-left: 40px;
    margin-right: 40px;

    border: solid 1px rgb(170, 170, 170);
    border-radius: 25px;
    height: fit-content;
    min-height: 80vh;
    background-color: white;
}

.accordion-item {
    margin-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
}

.accordion-button {
  background: #f8f9fa;
  border: none;
  padding: 1rem;
  font-size: 1.2rem;
  cursor: pointer;
  font-weight: 700;
}

.accordion-button:hover {
  background: #e2e6ea;
}

.accordion-body {
  padding: 1rem;
  background: #fff;
  border: 1px solid #ddd;
}

.new-strategy-button-container {
    margin-left: 20px;
    margin-right: 20px;
}

.new-strategy-button {
    border: solid 1px rgb(24, 138, 24);
    color: white;
    background-color: rgb(24, 138, 24);
    font-weight: 700;
    border-radius: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.2rem;
    cursor: pointer;
    width: 100%;
    height: 55px;
}

.new-strategy-button:hover {
    border: solid 1px rgb(24, 138, 24);
    color: rgb(24, 138, 24);
    background-color: white;
}