/********** Template CSS **********/
:root {
    --primary: #1f2276;
    --secondary: #6c757d;
    --accent-color: #ff6b35;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --light: #f8f9fa;
    --dark: #1a1a1a;
    --facebook-blue: #1877f2;
    --instagram-purple: #e4405f;
    --twitter-blue: #1da1f2;
    --whatsapp-green: #25d366;
    --font-family-base: 'Jost', sans-serif;
    --gradient-primary: linear-gradient(135deg, #1f2276 0%, #1f2276 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    --transition-standard: all 0.3s ease;
}

/* Enhanced Story Styles */
.story-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 15px 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.story-wrapper {
    display: flex;
    gap: 15px;
    padding: 0 15px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.story-wrapper::-webkit-scrollbar {
    display: none;
}

.story-item {
    flex: 0 0 auto;
    width: 80px;
    text-align: center;
    transition: transform 0.2s ease;
}

.story-item:hover {
    transform: translateY(-2px);
}

.story-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 3px;
    margin: 0 auto;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    position: relative;
}

.story-circle.new-story {
    background: var(--light);
    border: 2px dashed var(--secondary);
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid white;
    background: white;
}

.story-username {
    font-size: 11px;
    font-weight: 500;
    margin-top: 6px;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.story-time {
    font-size: 10px;
    color: var(--secondary);
    margin-top: 2px;
}

/* Enhanced News Ticker */
.news-ticker {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.news {
    display: inline-block;
    white-space: nowrap;
    padding: 12px 0;
    animation: ticker 40s linear infinite;
    font-weight: 500;
}

.news span {
    margin: 0 30px;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.card-header-custom {
    background: linear-gradient(135deg, var(--primary), #007bff);
    color: white;
    padding: 12px 20px;
    font-weight: 600;
    border: none;
}

/* Top Athletes Enhancement */
.top-athletes-container {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.athlete-card {
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.athlete-card:hover {
    transform: translateY(-5px);
}

.athlete-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    margin: 0 auto 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.athlete-name {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 14px;
}

.athlete-stars {
    color: #ffc107;
    margin-bottom: 10px;
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Badges */
.badge-custom {
    background: linear-gradient(135deg, var(--primary), #007bff);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #007bff);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.btn.btn-primary {
    color: #FFFFFF;
}

.bg-primary {
    background-color: var(--primary) !important
}

.btn {
    color: var(--light-color);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Layout ***/
.sidebar {
    background: linear-gradient(180deg, var(--dark) 0%, #2d3748 100%) !important;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 100vh;
    overflow-y: auto;
    background: var(--light);
    transition: 0.5s;
    z-index: 999;
}

.sidebar .nav-link {
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    margin: 2px 0;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    border-left-color: var(--primary);
    background: rgba(255,255,255,0.1);
    color: white !important;
}

/* Navbar Enhancement */
.navbar-light {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}



.content {
    margin-left: 250px;
    min-height: 100vh;
    background: #FFFFFF;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -250px;
    }

    .content {
        width: calc(100% - 250px);
    }

    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -250px;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .content {
        margin-left: 0;
    }
    
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .story-item {
        width: 70px;
    }
    
    .story-circle {
        width: 60px;
        height: 60px;
    }
}


/*** Navbar ***/
.sidebar .navbar .navbar-nav .nav-link {
    padding: 7px 20px;
    color: var(--light);
    font-weight: 500;
    border-left: 3px solid var(--light);
    border-radius: 0 30px 30px 0;
    outline: none;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    background: #FFFFFF;
    border-color: var(--primary);
}

.sidebar .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.sidebar .navbar .navbar-nav .nav-link:hover i,
.sidebar .navbar .navbar-nav .nav-link.active i {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.sidebar .navbar .dropdown-toggle::after {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.sidebar .navbar .dropdown-item {
    padding-left: 25px;
    border-radius: 0 30px 30px 0;
}

.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 12px 0;
    color: var(--dark);
    outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 40px;
}

.content .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}


/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}

/* ===================================
   CUSTOM IMPROVEMENTS
   =================================== */

/* 1. Object-fit: contain for all product and post images */
.post-media img,
.post-media video,
.post-detail-card .post-media img,
.post-detail-card .post-media video,
.product-image-grid img,
.product-card .product-image,
.product-card-grid img,
.image-preview,
.product-image,
.related-product img,
.product-tag img,
.gallery .gallery-item img,
.carousel img,
.shop-item img {
    object-fit: contain !important;
    background: #f8f9fa;
    display: block;
}

/* 2. Reduced dimensions for post media */
.post-media img,
.post-media video {
    max-height: 380px !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
}

.post-detail-card .post-media img,
.post-detail-card .post-media video {
    max-height: 480px !important;
    max-width: 100% !important;
}

.product-image img {
    max-height: 350px !important;
    max-width: 100% !important;
}

.product-image-grid img {
    max-height: 280px !important;
    max-width: 100% !important;
}

@media (max-width: 768px) {
    .post-media img,
    .post-media video {
        max-height: 280px !important;
    }
    
    .post-detail-card .post-media img,
    .post-detail-card .post-media video {
        max-height: 350px !important;
    }
    
    .product-image img {
        max-height: 250px !important;
    }
    
    .product-image-grid img {
        max-height: 200px !important;
    }
}

@media (max-width: 480px) {
    .post-media img,
    .post-media video {
        max-height: 220px !important;
    }
    
    .product-image img {
        max-height: 180px !important;
    }
}

/* 3. Sidebar icons - Already updated above with theme colors */


/* ===================================
   POST CARD ENHANCEMENTS
   =================================== */

/* Post card hover effect for navigation */
.post-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
}

/* ===================================
   MODERN COMMENT FIELD SECTION
   =================================== */

.comment-form {
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 16px 16px;
}

.comment-input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.comment-input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(31, 34, 118, 0.15);
    transform: translateY(-1px);
}

.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}

.comment-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px 12px;
    font-size: 0.95rem;
    background: transparent;
    color: var(--dark);
}

.comment-input::placeholder {
    color: #adb5bd;
    font-style: italic;
}

.comment-submit {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary), #007bff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.comment-submit:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 4px 12px rgba(31, 34, 118, 0.3);
}

.comment-submit:active {
    transform: scale(0.95) rotate(15deg);
}

.comment-submit i {
    font-size: 1rem;
}

/* Comments section styling */
.comments-section {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0 0 16px 16px;
    max-height: 400px;
    overflow-y: auto;
}

.comments-section::-webkit-scrollbar {
    width: 6px;
}

.comments-section::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 10px;
}

.comments-section::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.comments-section::-webkit-scrollbar-thumb:hover {
    background: #007bff;
}

/* Enhanced button styling */
.btn-enhanced {
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-enhanced:active {
    transform: translateY(0);
}

/* Post card general styling improvements */
.post-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(135deg, #fafbfc, #f8f9fa);
}

.post-header .post-author {
    flex: 1;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.post-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.post-author-info h6 {
    margin: 0;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.post-time {
    color: var(--secondary);
    font-size: 0.8rem;
    margin: 0;
}

.post-content {
    padding: 1.25rem;
}

.post-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 1rem;
}

.post-media {
    border-radius: 12px;
    overflow: hidden;
    margin: 1rem 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-media img,
.post-media video {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.post-media:hover img {
    transform: scale(1.02);
}

.post-actions {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #fafbfc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--secondary);
}

.post-buttons {
    display: flex;
    gap: 0.5rem;
}

.post-btn {
    background: none;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.post-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.post-btn.liked {
    color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.1);
}

.post-btn.liked:hover {
    background: rgba(231, 76, 60, 0.15);
}

.post-btn.liked i {
    color: #e74c3c !important;
}

.post-btn i {
    font-size: 1rem;
}

.post-dropdown {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.post-menu-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    padding: 0.5rem;
    color: var(--secondary);
}

.post-menu-btn:hover {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.2);
    color: #495057;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

/* Dropdown styles */
.dropdown-menu {
    min-width: 180px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin-top: 8px;
}

.dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    border-radius: 6px;
    margin: 2px 8px;
    width: calc(100% - 16px);
}

.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.04);
    transform: translateX(2px);
}

.dropdown-item.text-primary:hover {
    background-color: rgba(0, 123, 255, 0.1);
    color: #0056b3 !important;
}

.dropdown-item.text-danger:hover {
    background-color: rgba(220, 53, 69, 0.1);
    color: #bd2130 !important;
}

.dropdown-divider {
    margin: 6px 0;
    opacity: 0.3;
}

.dropdown-item i {
    width: 20px;
    margin-right: 10px;
    font-size: 16px;
}

/* Modify form styles */
.modify-form {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #dee2e6;
}

.modify-form textarea.form-control {
    border: 1px solid #ced4da;
    border-radius: 6px;
    resize: vertical;
}

.modify-form .btn {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
}

/* Loading States for Posts */
.post-skeleton {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.skeleton-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.skeleton-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.skeleton-text {
    height: 12px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-media {
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 12px;
    margin-bottom: 1rem;
}
.post-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.post-header {
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.post-author-info h6 {
    margin: 0;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.post-time {
    margin: 0;
    font-size: 0.8rem;
    color: #6c757d;
}

.post-content {
    padding: 1.25rem;
}

.post-text {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-media {
    margin: 1rem 0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-actions {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid #f0f0f0;
}

.post-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.post-buttons {
    display: flex;
    gap: 0.5rem;
}

.post-btn {
    flex: 1;
    padding: 0.5rem 1rem;
    border: none;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.post-btn:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.post-btn.liked {
    color: #dc3545;
}

.post-btn.liked i {
    color: #dc3545;
}

.post-dropdown {
    position: relative;
}

.post-menu-btn {
    background: transparent;
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6c757d;
}

.post-menu-btn:hover {
    background: #f8f9fa;
    color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comment-input-group {
        padding: 6px 10px;
    }
    
    .comment-avatar {
        width: 32px;
        height: 32px;
    }
    
    .comment-submit {
        width: 36px;
        height: 36px;
    }
    
    .post-card {
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    .post-header,
    .post-content,
    .post-actions {
        padding: 0.875rem;
    }
    
    .post-avatar {
        width: 40px;
        height: 40px;
    }
}
