#sub-cloud-title {
    text-indent: 50px;
    color: rgba(255, 255, 255, 0.759);
}

#user-events-box {
    background-color: #f1efed;
}

.title-txt {
    color: #333333;
    font-family: "Oracle Sans";
    font-size: 24px;
    font-weight: 600;
    margin-left: 50px;
    padding-top: 100px;
    
}

.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    width: 400px;
    margin: auto;
}

#pagination-controls button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    font-family: "Oracle Sans";
    font-size: 16px;
    color: #626262;
}

#pagination-controls .active {
    font-weight: bold;

}

#pagination-controls .pageNumber:hover {
        border-radius: 3px;
        border: 1.5px solid #626262;

}



.filter-button-active {
    background-color: #1e87f0;
    color: white;
}

.heading-txt {
    margin-left: 50px;
    inline-size: 500px;
    padding-bottom: 100px;

}

#helloworldbutton {
    border-radius: 6px;
    background-color: #36677d;
    margin-left: 50px;
    margin-top: -125px;
}

.samples-section {
    color: #333333;
    font-family: "Oracle Sans";
    font-size: 26px;
    font-weight: 400;

}


.samples-card {
    font-size: 20px;
}

.sample-card-title {
    font-size: 18px;
    font-family: 'Oracle Sans';
    font-weight: 450;
    margin-top: 20px;
}

.beginner-badge {
    background-color: #257f9f;  
}

.beginner-badge:hover {
    background-color: #175064;  
    transition: .3s
}

.intermediate-badge {
    background-color: #ae640d;  
}

.intermediate-badge:hover {
    background-color: #824a0a;
    transition: .3s;  
}
.advanced-badge {
    background-color: #508324;  
}

.advanced-badge:hover {
    transition: .3s;
    background-color: #385d17;  
}

.level-badge {
    text-transform: capitalize;
    border-radius: 8px;
    margin-top: -20px;

}

#flex-cards .uk-card {
    height: 300px;
}

.tags-badge {
    top: 10px;
    background-color: #e4e4e4;
    font-weight: 500;
    color: #656464 !important;
    width: 97px;
    height: 25px;
    position: relative;
    font-size: 9px;
    border-radius: 8px;
    text-transform: capitalize;
    right: 10px;
}

.tags-badge:hover {
    transition: box-shadow .3s;
    box-shadow: 0 0 6px rgba(33, 33, 33, 0.446); 
}

.sample-card-p {
    font-size: 12px;
    margin-top: -15px;
}

.background {
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background-image: -webkit-linear-gradient(bottom, #f3f3f3, #f3f3f3 30%, transparent 20%, transparent 20%)
}

.tags-container {
    height: 30%;
    position: absolute;
    bottom: 0px;

}

.container-title {
    margin-bottom: -125px;
}

.search-samples {
    margin-top: 25px;
    margin-left: 20px;
}

.filter-button {
    color: #333333;
    font-family: "Oracle Sans";
    font-weight: 500;
    border: 1.5px solid;
    border-radius: 6px;
}

.dropdown-button {
    width: 175px;
    height: 50px;
    color: #333333;
    font-family: "Oracle Sans";
    font-weight: 400;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    background-color: white;
    position: relative;
    padding: 0 20px;
}

.dropdown-button::after {
    content: "\25BE";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #333333;
}

#prevPage {
    width: 75px;
    height: 50px;
    background-color: #f5f5f5;
    font-family: "Oracle Sans";
    font-weight: 400;
    border: 1.5px solid;
    border-radius: 6px;
    color: white;
}

#nextPage {
    width: 75px;
    height: 50px;
    background-color: #f5f5f5;
    font-family: "Oracle Sans";
    font-weight: 400;
    border: 1.5px solid;
    border-radius: 6px;
    color: white;

}

#prevPage:hover {
    background-color: #e0e0e0;
    transition: 0.3s;
}

#nextPage:hover {
    background-color: #e0e0e0;
    transition: 0.3s;
}


.search-bar-container {
    position: relative;
    display: flex;
    align-items: center;
}

#clear-search {
    position: relative;
    right: 25px;
    color: #ccc;
}

.search-input:focus {
    outline: none; /* Removes the default browser outline */
    box-shadow: 0 0 0 2px #00A4BD; /* Adds a custom shadow as a focus indicator */
}

  .reset-button {
    width: 175px;
    height: 50px;
    background-color: #285d6f;
    font-family: "Oracle Sans";
    font-weight: 400;
    border: 0px solid;
    border-radius: 6px;
    color: white;

  }

  .reset-button:hover {
    transition: .3s;
    background-color: #1f4957;
  }
 
  .dropdown {
    display: inline-block;
    position: relative;
    margin-bottom: 50px;
  }
  .dropdown-content {
    opacity:100px;
    z-index: 1;
    font-size: 14px;
    font-family: "Oracle Sans";
    width: 100px;
    display: none;
    position: absolute;
    width: 100%;
    overflow: auto;
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.4);
    max-height: 150px; /* Set a fixed height for the dropdown */
    overflow-y: auto; /* Enable vertical scrolling */
    background-color: white;
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }
  .dropdown-content a {
    display: block;
    color: #000000;
    padding: 5px;
    text-decoration: none;

  }
  .dropdown-content a:hover {
    color: #FFFFFF;
    background-color: #00A4BD;
  }

  #flex-cards {
    justify-content: start;
    display: flex;
    flex-wrap: wrap;
    margin: -50px;
 }

 #flex-cards li {
    align-items: center;
    justify-content: center;
    width: calc(33.33% - 20px);
    margin: 10px;
    box-sizing: border-box;
 }

 .uk-card {
    width: 1000px;
 }

 .dropdown-menu {
    width: 100px;
    height: 50px;
    font-size: 18px;
 }

 #flex-cards .uk-card{
    white-space: wrap;
}

.filtering-section {
    background-color: #0bb0c9;
}

.filter-container {
    background-color: green;
}

.main-content-container {
    background: linear-gradient(to bottom, #F5F5F5 280px, #fff 280px);
}

.samples-ojet-pagination {
    color: rgba(0, 0, 0, 0.60)
}

.oj-ux-ico-arrow-left-alt:before {
    justify-content: center;
    align-items: center;
    position: relative;
    font-size:24px;
}

.oj-ux-ico-arrow-right-alt:before {
    justify-content: center;
    align-items: center;
    position: relative;
    font-size:24px;
}

.samples-ojet-icon {
    color: white;
    top: -2px;
    right: 35px;
}

.oj-ux-ico-cancel:before {
    position: absolute;
    font-size:24px;
}





