/* Initially hide the dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 150px;
    padding: 10px;
    z-index: 999;
}

/* Optional: Add hover effect for dropdown items */
.dropdown-item {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
}


/* modal sign/signup error color  */

.alert-danger {
    color: #d9534f; /* Bootstrap default red for alerts */
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 14px;
}

.popular-todo-item .todo-rating .rating-value > span {
    width:auto;
    padding:0 10px;
    font-size:12px;
}

.frontpage-banner-section.frontpage-banner-style-five .frontpage-banner-content { padding-top:40px !important; padding-bottom:120px !important; }

.popular-todo-item .item-thumb:before { background-image:none !important}

.listing-todo-thumbnail-area .todo-thumb { min-height: 300px !important;}

.listing-todo-thumbnail-area .listing-todo-header { padding-top:0; }

.listing-todo-thumbnail-area { min-height: auto !important;}

/* Blog Styles */
.blog-area {
    background-color: #f9f9f9;
}

.single-blog-post {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.single-blog-post:hover {
    transform: translateY(-5px);
}

.single-blog-post .post-thumbnail {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.single-blog-post .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.single-blog-post:hover .post-thumbnail img {
    transform: scale(1.05);
}

.single-blog-post .post-content {
    padding: 25px;
}

.single-blog-post .post-meta {
    margin-bottom: 15px;
    color: #888;
    font-size: 0.9rem;
    list-style: none;
    padding: 0;
}

.single-blog-post .post-meta li {
    display: inline-block;
    margin-right: 15px;
}

.single-blog-post .post-meta i {
    color: #007bff;
    margin-right: 5px;
}

.single-blog-post .post-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.single-blog-post .post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-blog-post .post-title a:hover {
    color: #007bff;
}

.single-blog-post p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.single-blog-post .btn-read-more {
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: margin-left 0.3s ease;
}

.single-blog-post .btn-read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.single-blog-post .btn-read-more:hover i {
    margin-left: 10px;
}

/* Pagination */
.pagination-area .pagination {
    justify-content: center;
    margin-top: 30px;
}

/* Blog Details */
.blog-details-area {
    background-color: #f9f9f9;
}

.blog-details {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.blog-details .post-thumbnail img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    max-height: 500px;
}

.blog-details .post-content {
    margin-top: 30px;
    line-height: 1.8;
    color: #444;
}

.blog-details .post-content h1,
.blog-details .post-content h2,
.blog-details .post-content h3,
.blog-details .post-content h4,
.blog-details .post-content h5,
.blog-details .post-content h6 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #222;
}

.blog-details .post-content p {
    margin-bottom: 20px;
}

.blog-details .post-content ul,
.blog-details .post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-details .post-content blockquote {
    border-left: 4px solid #007bff;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.blog-details .post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.page-banner-content h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-banner-content .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-banner-content .breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.page-banner-content .breadcrumb-item.active {
    color: #007bff;
}

.entry-meta {
    color: #777;
    font-size: 0.9rem;
}

.entry-meta i {
    color: #007bff;
    margin-right: 5px;
}