@charset "UTF-8";
/* CSS Document */

body {
            background: #f8f9fa;
			font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
        }
        .top-nav {
            background: #222;
            padding: 10px;
            text-align: right;
        }
        .top-nav a {
            color: white;
            margin: 0 15px;
            text-decoration: none;
            font-weight: 500;
        }
      
   
        .sidebar {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
			 font-size: 14px;
        }
        .sidebar h4 {
            font-size: 16px;
            margin-bottom: 15px;
        }
		 .sidebar h5 {
            font-size: 14px;
            margin-bottom: 8px;
        }
        .car-item {
            margin-bottom: 20px;
        }
        .car-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
        }
        .selected {
            border: 2px solid red !important;
        }

		
		span{
			color: tomato;
			font-size: 17px;
		}
		
        /* Top Header -  #8aab04 */
        .top-bar {
			
            background: #097969;
            padding: 10px 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
			z-index: 1030;
			font-size: 14px;
        }
        .logo img {
            height: 90px;
        }
        .search-bar input {
            border-radius: 5px 0 0 5px;
			font-size: 15px;
        }
        .search-bar button {
            border-radius: 0 5px 5px 0;
        }
        .search-bar {
            width: 70%;
            margin: 0 15px;
        }
        .sell-car {
            background: #192d6c;
            color: white;
			border-color: #192d6c;
            padding: 10px 15px;
            border-radius: 5px;
            white-space: nowrap;
        }
		

        /* Bottom Navbar */
        .bottom-bar {
            background: #192d6c;
			font-size: 15px;
			
			
        }
        .nav-item {
            border-right: 1px solid #097969;
			font-size: 15px;
        }
        .nav-item:last-child {
            border-right: none;
        }

        /* Mobile Responsive */
        @media (max-width: 991px) {
            .top-bar {
                flex-direction: column;
                text-align: center;
            }
            .search-bar {
                width: 100%;
                margin: 10px 0;
            }
            .sell-car {
                width: 100%;
                margin-top: 10px;
            }
			     
       		.login-btn {
            	display: block;
            	width: 100%;
            	margin-top: 10px;
				font-size: 14px;
        	}
        }

	

