@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    color: #e0e0e0;
    font-family: "Inter", sans-serif !important;
}

header .navbar-nav{
    justify-content: center;
}
header .auth-buttons .btn{
    background-color: #fff;
    color: #001f3f;
}
header .user-name{
    color: #fbfbfb;
}

header .auth-buttons .btn:hover {
    background-color: transparent;
    color: #fff;
}

    .welcome-card {
        background: linear-gradient(135deg, #002e5e 0%, #001f3f 100%);
        border-radius: 1rem;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

.content-card {
  background: #597f90;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.card-header-custom {
  background: #002e5e;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.list-group-item-custom {
  background: #597f90;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  color: #e0e0e0;
  transition: all 0.3s ease;
}

.list-group-item-custom:hover {
  background: #4a6b7a;
}

.list-group-item-custom:last-child {
  border-bottom: none;
}

.badge-custom {
  background: #002e5e;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 500;
}

.popular-category-icon {
  width: 40px;
  height: 40px;
  background: #002e5e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

a {
  text-decoration: none !important;
  color: inherit;
}

.text-muted {
  color: #fbfbfb !important;
  font-weight: 600 !important;
}

.main-title{
    color: #fff;
}

/* Most Visited Topics Styles */
.topic-card {
    background: #fff !important;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.topic-card .topic-content *{
    color: #333 !important;
}

    .topic-image {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

.topic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.topic-card:hover .topic-image img {
    transform: scale(1.05);
}

.topic-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 20px;
}

.topic-views {
    color: white;
    font-size: 0.9rem;
}

.topic-content {
    background: var(--card-bg);
}

.topic-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.topic-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.topic-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.topic-author, .topic-comments {
    display: flex;
    align-items: center;
}

.topic-author i, .topic-comments i {
    margin-right: 4px;
}

/* Modern Navigation Styles */
.custom-navbar {
    background: linear-gradient(135deg, #002e5e 0%, #001f3f 100%);
    padding: 0.8rem 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 0 2px;
}

.nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
}

.user-profile-section {
    position: relative;
}

.user-avatar img {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.user-info {
    text-align: left;
}

.user-name {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

.user-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.dropdown-menu {
    background: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0.5rem;
}

.dropdown-item {
    padding: 0.6rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

.auth-buttons .btn {
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.auth-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

.auth-buttons .btn-light {
    background: #fff;
    color: #002e5e;
}

.auth-buttons .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #002e5e;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .auth-buttons {
        margin-top: 1rem;
        display: flex;
        gap: 0.5rem;
    }
    
    .auth-buttons .btn {
        flex: 1;
    }
}

/* Category Content Styles */
.category-content {
    padding: 1rem;
}

.content-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.content-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-item:hover .content-image {
    transform: scale(1.05);
}

.content-details {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-details h4 {
    color: #002e5e;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.content-details p {
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.content-meta {
    display: flex;
    gap: 1.5rem;
    color: #888;
    font-size: 0.85rem;
}

.content-meta span {
    display: flex;
    align-items: center;
}

.content-meta i {
    margin-right: 0.25rem;
}

@media (max-width: 767.98px) {
    .content-image {
        height: 180px;
    }
    
    .content-details {
        padding: 1rem;
    }
    
    .content-meta {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Login Page Styles */
.login-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 5rem;
    margin-bottom: 2rem;
}

.login-header {
    margin-bottom: 2rem;
}

.login-icon {
    font-size: 3rem;
    color: #002e5e;
    margin-bottom: 1rem;
}

.login-title {
    color: #002e5e;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: #666;
    font-size: 1rem;
}

.login-form .form-floating {
    margin-bottom: 1.5rem;
}

.login-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem 0.75rem;
    height: auto;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-form .form-control:focus {
    border-color: #002e5e;
    box-shadow: 0 0 0 0.25rem rgba(0, 46, 94, 0.1);
}

.login-form .form-floating label {
    padding: 1rem 0.75rem;
    color: #666;
}

.login-form .form-floating > .form-control:focus ~ label,
.login-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    color: #002e5e;
}

.login-form .form-check-input:checked {
    background-color: #002e5e;
    border-color: #002e5e;
}

.login-form .form-check-label {
    color: #666;
}

.login-button {
    background: linear-gradient(135deg, #002e5e 0%, #001f3f 100%);
    border: none;
    padding: 0.8rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 46, 94, 0.2);
}

.register-link {
    color: #002e5e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.register-link:hover {
    color: #001f3f;
    text-decoration: underline;
}

.alert-danger {
    background-color: #fff5f5;
    border-color: #feb2b2;
    color: #c53030;
    border-radius: 10px;
    padding: 1rem;
}

@media (max-width: 768px) {
    .login-card {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .login-title {
        font-size: 1.5rem;
    }
    
    .login-icon {
        font-size: 2.5rem;
    }
}
.text-dark{
    color: #333;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #002e5e 0%, #001f3f 100%);
    color: #fff;
    padding-top: 3rem;
    margin-top: 4rem;
}

.footer-content {
    padding-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-brand i {
    margin-right: 0.5rem;
    color: #fff;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #fff;
    color: #002e5e;
    transform: translateY(-3px);
}

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    font-size: 0.8rem;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    width: 30px;
    margin-right: 1rem;
    color: #fff;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .copyright {
        text-align: center;
    }
}
.form-control:focus,
.form-check-input:focus {
    box-shadow: none !important;
}

/* Leaderboard Styles */
.leaderboard-header {
    margin-bottom: 3rem;
}

    .leaderboard-header p{
        color: #333 !important;
    }

    .leaderboard-header h1 {
        color: #002e5e;
        font-weight: 700;
    }

.leaderboard-filters {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.search-box input {
    padding-left: 2.5rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

.search-box input:focus {
    border-color: #002e5e;
    box-shadow: none;
}

.leaderboard-table {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.leaderboard-table .table {
    margin-bottom: 0;
}

.leaderboard-table th {
    background: #f8f9fa;
    color: #002e5e;
    font-weight: 600;
    padding: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.leaderboard-row {
    transition: all 0.3s ease;
}

.leaderboard-row:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rank-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
}

.rank-1 {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.rank-2 {
    background: linear-gradient(135deg, #C0C0C0 0%, #A9A9A9 100%);
}

.rank-3 {
    background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%);
}

.rank-number {
    font-weight: 600;
    color: #666;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    margin: 0;
    color: #002e5e;
    font-weight: 600;
}

.user-title {
    font-size: 0.85rem;
    color: #666;
}

.points-badge {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #002e5e;
    font-weight: 600;
}

.points-badge i {
    color: #FFD700;
}

.badge-list {
    display: flex;
    gap: 0.5rem;
}

.badge-item {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #002e5e;
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.badge-item[title="Uzman"] i {
    color: #FFD700;
}

.badge-item[title="Aktif"] i {
    color: #FF4500;
}

.badge-item[title="Yardımsever"] i {
    color: #32CD32;
}

.activity-stats {
    display: flex;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.stat-item i {
    color: #002e5e;
}

.leaderboard-pagination {
    margin-top: 2rem;
}

.pagination .page-link {
    color: #002e5e;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background: #002e5e;
    color: #fff;
}

.pagination .page-link:hover {
    background: #f8f9fa;
    color: #002e5e;
}

@media (max-width: 768px) {
    .leaderboard-table {
        margin: 0 -1rem;
        border-radius: 0;
    }
    
    .user-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .activity-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .badge-list {
        justify-content: center;
    }
}
.table-responsive{
    overflow-x: unset;
}

.user-detail-page .profile-sidebar-section .main-title {
    font-size: 14px;
    color: rgb(146, 153, 184);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.user-detail-page i.fas,
.user-detail-page i.far {
    color: rgb(146, 153, 184);
}
.user-detail-page .profile-sidebar-section .card-body p {
    color: #6c757d !important;
    line-height: 1.6;
    font-size: 13px;
}

.user-detail-page .contact-info-list li{
    font-size: 13px;
}

.social-links-list .fa-x-twitter {
    color: rgb(29, 161, 242);
}
.social-links-list .fa-facebook-f {
    color: rgb(59, 89, 152);
}
.social-links-list .fa-instagram {
    color: rgb(255, 3, 0);
}
.user-detail-page .profile-stats small {
    color: #6c757d !important;
    font-size: 12px;
}

.user-detail-page .profile-sidebar .btn{
    min-width: 120px;
    height: 40px;
}

.btn-color {
    background-color: #002953;
    border-color: #002953;
    color: #fff;
}

.btn-outline-color {
    background-color: transparent;
    border-color: #002953;
    color: #002953;
}

.btn-color i{
    color: #fff !important;
}

.btn-outline-color i {
    color: #002953 !important;
}

.btn-color:hover {
    background-color: transparent !important;
    color: #002953;
    border-color: #002953;
}
.btn-color:hover i {
    color: #002953 !important;
}

.btn-outline-color:hover {
    background-color: #002953;
    border-color: #002953;
    color: #fff;
}

.btn-outline-color:hover i{
    color: #fff !important;
}


.user-profile-page {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.profile-page-title {
    font-weight: 700;
    color: #333;
}

.top-actions .btn {
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.top-actions .btn-light {
    background-color: #fff;
    color: #6c757d;
    border-color: #dee2e6;
}

.top-actions .btn-light:hover {
    background-color: #e9ecef;
}

.top-actions .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.top-actions .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Sidebar (Left Column) Styles */
.profile-sidebar .profile-avatar {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-sidebar .profile-name {
    font-weight: 600;
    color: #333;
}

.profile-sidebar .profile-title {
    color: #6c757d !important;
    font-size: 0.9rem;
}

.profile-sidebar .btn-outline-primary {
    border-color: #007bff;
    color: #007bff;
    background-color: #fff;
}

.profile-sidebar .btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
}

.profile-sidebar .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.profile-sidebar .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.profile-stats {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.profile-stats .col-4 {
    border-right: 1px solid #eee;
}

.profile-stats .col-4:last-child {
    border-right: none;
}

.profile-stats h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.profile-sidebar-section {
    border-radius: 0.5rem;
    overflow: hidden;
    border: none;
    background-color: #fff;
}

.profile-sidebar-section .card-header-custom {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 600;
}


.contact-info-list li {
    margin-bottom: 0.75rem;
    color: #6c757d;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-list li i {
    color: #007bff;
    width: 20px;
}

.contact-info-list a {
    color: #6c757d !important;
}

.contact-info-list a:hover {
    color: #0056b3 !important;
}

.skills-list .badge {
    background-color: #e9ecef !important;
    color: #495057 !important;
    padding: 0.5em 0.8em;
    font-size: 0.85rem;
    font-weight: 500;
}

.social-links-list .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    font-size: 1.1rem;
    margin-right: 0.75rem;
    transition: all 0.2s ease;
}

.social-links-list .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Main Content (Right Column) Styles */
.profile-main-content {
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #fff;
}

.profile-cover-image {
    height: 250px;
    background-color: #e0e0e0; /* Fallback */
}

.profile-cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.change-cover-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    color: #333;
    font-weight: 500;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
}

.change-cover-btn:hover {
    background-color: #fff;
    color: #007bff;
}

.user-detail-page .profile-tabs-main {
    border-bottom: 1px solid #dee2e6;
    padding: 0 1.5rem;
    margin-bottom: 0;
}

.user-detail-page .profile-tabs-main .nav-item {
    margin-bottom: -1px;
}

.user-detail-page .profile-tabs-main .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    display: block;
    padding: 20px 20px !important;
    border-radius: 0px;
    color: rgb(146, 153, 184) !important;
}

    .user-detail-page .profile-tabs-main .nav-link.active {
        color: #002853 !important;
        border-color: #002853;
        background-color: #fff;
    }

.user-detail-page .profile-tabs-main .nav-link:hover {
    color: #007bff;
}

.user-detail-page .profile-tab-content-main {
    background-color: #fff;
    border-radius: 0 0 0.5rem 0.5rem;
    color: #333;
}




/* Gönderiler */

.posts-list .post-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

    .posts-list .post-item .card-header {
        background-color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px;
    }

.posts-list .post-avatar {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 2px solid #002953;
}

.posts-list .post-item .card-header h6 {
    color: #000 !important;
    font-weight: 600;
    margin-bottom: 0;
}
.posts-list .post-item .dropdown-menu {
    background-color: #305880;
    border: 1px solid #fff;
}

.posts-list .post-item .dropdown-item,
.posts-list .post-item .dropdown-item i{
    color: #fbfbfb !important;
}

    .posts-list .post-item .dropdown-item:hover {
        background-color: #002953;
        color: #fff;
    }

.posts-list .post-image {
    width: 100%;
    height: auto;
    display: block;
}

.posts-list .post-actions .btn {
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #002953;
    background-color: #002953;
}
.posts-list .post-actions .btn:hover{
    background-color: transparent;
    color: #002953 !important;
}

.comments-section .comment-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
}

.comments-section .comment-avatar {
    width: 25px;
    height: 25px;
    object-fit: cover;
    border: 1px solid #002953;
}

.comments-section .comment-author {
    color: #000 !important;
}

.comments-section .comment-author strong {
    font-weight: 600;
}

.comments-section .comment-form .form-control-custom {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.comments-section .comment-form .btn-color {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.comments-section .text-muted,
.posts-list .post-item .card-header small,
.comments-section .main-title {
    color: #777 !important;
}
.comments-section .text-white-50,
.posts-list .text-white-50 {
    color: #666 !important;
}
