.post-list-dropdown-wrapper {
    width: auto;
}
.post-list-dropdown {
    width: 100%;
    max-width: 500px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #d1d5db; /* Tailwind gray-300 */
    border-radius: 10px;
    background-color: #f3f4f6; 
    color: #111827; /* Tailwind gray-900 */
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg fill='%23333' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.23 7.21a.75.75 0 011.06.02L10 11.185l3.71-3.954a.75.75 0 111.08 1.04l-4.25 4.53a.75.75 0 01-1.08 0l-4.25-4.53a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.post-list-dropdown:focus {
    outline: none;
    border-color: #3b82f6; /* Tailwind blue-500 */
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3); /* Blue focus ring */
}

.post-list-dropdown:hover {
    border-color: #3067f0;
    cursor: pointer;
    background-color: #e5e7eb; /* Tailwind gray-200 */
}

.post-content-box.loader-active{
    background-color: transparent;
    border: none;
     box-shadow: none;
}

.post-content-box {  
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    transition: all 0.3s ease-in-out;
  max-width: calc(100% - 20px);
  margin-inline: auto;

}
#post-dropdown-1 {
    margin-left: auto;
    margin-right: 10px;
}

#post-dropdown-2 {
    margin-right: auto;
    margin-left: 10px;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3067f0; /* Blue color */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1.5s linear infinite;
    transform: translateX(-50%);
    z-index: 10;
}


@keyframes spin {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}
.post-list-dropdown-wrapper {
    position: sticky;
    top: 0px; /* Distance from top of viewport */
    z-index: 1000;
    background: #f9f9f9; /* Ensure background is solid */
    padding: 19px 0;
    width: 100%;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.loader_position {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
}

@media (max-width: 1564px) {
    .ajax-post-content .toolRatingCon  {
        width: 100%;
    }
}
@media (max-width: 1094px) {
    .score_head_plugin {
            overflow-wrap: break-word;
    }
    .score_dashborad_plugin  {
         overflow-wrap: break-word;
    }
}
@media (max-width: 1037px) {
   .post-list-dropdown {
    width: 80%;
   }
}

@media (max-width: 770px) {
    .post-content-box .e-con-full {
        display: block;
    }
    .post-list-dropdown {
        max-width: 97%;
        margin: auto;
        width: 100%;
    }
    .post-list-dropdown-wrapper {
        padding: 19px 0 0 0;
    }

    .post-list-dropdown-wrapper {
        padding-bottom: 0;
    }
}

@media (max-width: 482px) {
    #post-dropdown-2 {
        margin-right: auto;
        margin-left: 53px;
    }
    #post-dropdown-1 {
        margin-left: auto;
        margin-right: 43px;
    }
}