:root {
    --dark-green: rgba(152, 203, 82, 0.82);
    --green: rgba(167, 215, 102, 0.82);
    --light-green: rgba(196, 239, 125, 0.82);
    --yellow: #fffccf;
    --blue-green: rgba(116, 220, 205, 0.73);
    --purple: rgba(191, 52, 203, 0.82);
    --green-blue: rgba(191, 52, 203, 0.82);
    --white: #ffffff;
    word-break: break-word !important;
}

body {
}

p {
    font-size: 20px;
}

a {
    color: #3e8ed0
}

.bg-green {
    background-color: var(--green);
}

.bg-dark-green {
    background-color: var(--dark-green)
}

.bg-yellow {
    background-color: var(--yellow);
}

.bg-blue-green {
    background-color: var(--blue-green);
}

a:hover {
    color: var(--purple) !important;
}

.navbar-burger {
    background: var(--green);
}

.navbar-brand {
    font-weight: bold;
}

.nav-item {
    background: var(--green);
    color: white;
    font-weight: bold;
}

.nav-item:hover {
    background: var(--green) !important;
    color: var(--purple) !important;
}

.wrapper-djaffs {
    margin-top: 20px;
}

.wrapper-djaffs .djaff {
    margin-bottom: 10px;
    padding: 20px;
    border-radius: 4px;
    background: var(--yellow);
}

.wrapper-djaffs .djaff .name {
    font-weight: bold;
}

.wrapper-djaffs .djaff .info {
    font-size: 12px;
    color: #aaa;
}

.djaffer {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 4px;
    border-color: #993333;
    background: var(--green);
}

@media (min-width: 1024px) {
    .title {
        color: #00ced1 !important;
        font-size: 37px !important;
    }

    .small-title {
        color: #00ced1 !important;
        font-size: 33px !important;
    }

    .text-denote {
        color: rgba(69, 103, 19, 0.82) !important;
        font-weight: bold;
        font-size: 23px;
    }
    .text-denote-white {
        color: rgb(255, 255, 255) !important;
        font-weight: bold;
        font-size: 23px;
    }
}

@media (max-width: 1024px) {
    .title {
        color: #00ced1 !important;
        font-size: 37px !important;
    }

    .small-title {
        color: #00ced1 !important;
        font-size: 28px !important;
    }

    .text-denote {
        color: rgba(69, 103, 19, 0.82) !important;
        font-weight: bold;
        font-size: 18px;
    }
    .text-denote-white {
        color: rgb(255, 255, 255) !important;
        font-weight: bold;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .title {
        color: #00ced1 !important;
        font-size: 37px !important;
    }

    .small-title {
        color: #00ced1 !important;
        font-size: 28px !important;
    }

    .text-denote {
        color: rgba(69, 103, 19, 0.82) !important;
        font-weight: bold;
        font-size: 15px !important;
    }
    .text-denote-white {
        color: rgb(255, 255, 255) !important;
        font-weight: bold;
        font-size: 15px !important;
    }
}


.nav-link:hover {
    color: var(--purple) !important;
    cursor: pointer
}

/*.link:hover {*/
/*    color: var(--purple) !important;*/
/*    cursor: pointer*/
/*}*/

.box-link:hover {
    color: var(--purple) !important;
    background: var(--light-green);
    cursor: pointer
}

.button-success {
    background: var(--dark-green);
    color: floralwhite;
}

.hw-divider {
  min-height: 1px;
  height: 1px;
  width: 100%;
  background-color: var(--dark-green);
}

.clickable-text {
    cursor: pointer;
    font-size: 1.2rem;
    margin: 10px;
    transition: color 0.3s;
}

.clickable-text:hover {
    color: #0d6efd;
}

.selectable-box {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    height: 350px;
    overflow-y: auto;
    text-align: left;
}

.selectable-text {
    cursor: pointer;
    padding: 5px 0;
}

.selectable-text:hover {
    background-color: #f8f9fa;
}

.button-group button {
    width: 100%;
    margin-bottom: 10px;
}

.divider {
    border-top: 1px solid #ccc;
    margin: 30px 0;
}