body {
    /*background: #F8F8F8 !important;*/
    background-color: #F0F2F5 !important;
}

.nav {
    border-radius: 0px !important;
    padding: 10px 0 10px 0 !important;
    /*background-color: #396afc !important; */
    background-color: #FFFFFF !important; 
}

a {
    color: #000000 !important;    
}
a:hover:not(.active) {
    color: #3070b3 !important;
}

.mb-7 {
    margin-bottom: 7px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mymodal {
    height: 300px !important;
    top: 200px !important;
    font-size: 20px !important;
}

.advertisement-modal {
    top: 150px !important;
    background-color: #FFFFFF !important; 
}

.ad-task {
    background: #ffffff;
    color: #000000;
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.ad-task-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.ad-task-title {
    font-size: 1rem;
}

.ad-task-controls {
    display: flex;
    gap: 6px;
}

.ad-task-body {
    font-size: 0.95rem;
    line-height: 1.5;
}

.ad-task-btn {
    background: none;
    border: none;
    padding: 2px 4px;
    cursor: pointer;

    /* Tweak size here */
    font-size: 1rem;         /* smaller text */
    line-height: 1;            /* keeps ✕ from looking extra tall */

    /* Make sure it uses Jost */
    font-family: var(--font-sans) !important;
    /* or, if you want to be explicit:
       font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif !important;
    */

    color: #3070b3;            /* blue; change if you want */
}

.ad-task-btn:hover {
    text-decoration: underline;
}

.ad-task-image {
    display: block;
    margin-top: 10px;
    max-width: 100%;
    border-radius: 6px;
}



.mb-5 {
    margin-bottom: 5px !important;
}

.w-big {
    width: 200px !important;
}

.bwhite-lg {
    background-color: transparent !important;
}

.bwhite-sm {
    background-color: transparent !important;
    width: 10px !important;
}

.comment-box {
    display: none;
}

/*added 30-08-2022, to hover over like button and see who has liked the post*/

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------------------*/

/*added 30-08-2022 (button for flacgcount, likecount and dislikecount*/
.btn.btn-primary:disabled{
    color: black;
    background-color: transparent;
    border-color: transparent;
}
/*--------------------------------------------------------------------------*/

/* disables a button without greying it out */
.soft-button-disable {
    cursor: default !important;
    pointer-events: none !important;
}