.navbar-f{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

.card-blog {
    box-shadow: 0px 0px 8px 2px #c6c6c6;
    margin: 0 10px;
    transition: 200ms;
}

.card-blog:hover {
    box-shadow: 0px 0px 20px 2px #c6c6c6;
}

.code {
    /* background-color: black; */
    /* color: white; */
    border-radius: 10px;
}

.code-container {
    position: relative;
    margin-bottom: 1rem;
    /* border: 1px solid #ddd; */
    border-radius: 5px;
}

/* Style the copy button */
.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #333;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
}

/* Optional: Style the copy button on hover */
.copy-btn:hover {
    background: #555;
}

.searchbar {
    margin-bottom: auto;
    margin-top: auto;
    height: 60px;
    background-color: white;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0px 0px 8px 1px #c6c6c6;
}

.search_input {
    border: 0;
    outline: 0;
    background: none;
    line-height: 40px;
    padding: 0 10px;
    width: 500px;
}

.search_icon {
    height: 40px;
    width: 40px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    /* background: #9e9e9e; */
    color: #0bceaf;
    border: none;
    outline: none;
}

.fix-height{
    height: calc(100vh - 74px);
}

.fix-height1{
    height: calc(100vh - 68px);
}

.sidebar{
    width: 280px;
    overflow: scroll;
    scrollbar-width: none;
}

.side-container{
    width: 100%;
    overflow: scroll;
    scrollbar-width: none;
}

.form-container{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-signin{
    width: 300px;
}

.none{
    display: none !important;
}

.form-select {
    outline: none;
    --bs-form-select-bg-img: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 99px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.d-flex select{
    width: 200px;
}

.search_form{
    width: 100%;
}

.profile_image{
    height: 100px;
    width: 100px;
}

.card-glass {
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);
    background-color: rgba(212, 212, 212, 0.35);
    border-radius: 12px;
    border: 1px solid rgba(209, 213, 219, 0.3);
}

.slide_container{
    padding-top: 100px;
    display: flex;
    justify-content: space-between;
}

.left_con{

}

.left_con span{
    display: block;
    font-size: 4pc;
    color: black;
    font-weight: 500;
}

.left_con a{
    display: block;
    font-size: 1pc;
    text-decoration: none;
    font-weight: 500;
}

.right_con{

}

.side-border{
    border-right: 1px solid #cbcaca;
}
.text-bold{
    font-weight: 800;
}

.right_con img{
    width: 300px;
}

@media screen and (max-width: 768px) {
    .search_input{
        width: 50vw;
    }

    .sidebar{
        display: none;
    }

    .slide_container{
        flex-direction: column-reverse;
    }
    
    .right_con img {
        width: 200px;
        margin-bottom: 20px;
    }
}