/* YOUR CUSTOM STYLES */

.content-row {
	margin-top: 30px;
}

.reply-margin {
	margin-left: 100px;
}

.text-center {
	text-align: center;
}

@media only screen and (min-width: 992px) {
	.main-wrapper,.footer-wrapper {
		margin-left: 5%;
		margin-right: 5%;
	}
	
	.content-row {
		margin-top: 75px;
	}
}

@media only screen and (min-width: 768px) {
	
	.main-wrapper,.footer-wrapper {
		margin-left: 2%;
		margin-right: 2%;
	}
}


.double-nav {
	padding-left: 0px;
}

@media only screen and (max-width: 992px) {
	.double-nav {
		padding-bottom: 6px;
	}
}

@media only screen and (max-width: 544px) {
	.navbar-brand {
		float: none;
	}
}

@media only screen and (max-width: 470px) {
	
	.reduce-for-mobile {
		font-size: 14px;
		height: 64px;
	}
	
	.reply-margin {
		margin-left: 10px;
	}
}

.navbar-dark .navbar-brand {
    color: #fff;
}

.account-wall {
	margin-top: 50px;
	margin-bottom: 50px;
}

.left-menu-button-collapse {
	font-size:24px;
	padding: 6px;
}

.alert-small {
	padding: 4px;
	font-size: 12px;
}

 
        /* Navigation */
        .navbar {
            background: #231F20;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 10px 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            color: #2c3e50;
            text-decoration: none;
        }
        
        .logo-square {
            width: 40px;
            height: 40px;
            background:  #ffffff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.15);
        }
        
        .logo-square img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
        }
        
        .brand-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            color: #fff;
        }
        
        .brand-text span {
            color: #fff;
        }
        
        .navbar-nav .nav-link {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            color: #fff !important;
            padding: 1.2rem 1.3rem;
            position: relative;
            transition: all 0.3s ease;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .navbar-nav .nav-link:hover {
            color: #dddddd !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #dddddd;
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 70%;
        }
        .navbar-nav .nav-link.dropdown-toggle::after {
            display: none;
        }
        .navbar-toggler {
            border: none;
            padding: 25px;
        }
        
        .navbar-scrolled {
            background: #231F20;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            padding: 5px 0;
        }
        /* Show dropdown on hover */
        .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
            display: block;
            margin-top: 0;
        }

        /* Optional: Add a slight transition for smoother appearance */
        .navbar-nav .dropdown-menu {
            transition: all 0.3s ease;
            margin-top: -5px;
        }

        .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
            margin-top: 0;
        }