* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gellix', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100vh;
    display: flex;
    padding: 20px;
    gap: 20px;
    overflow: hidden;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #aaaaaa;
    border-radius: 25px;
}

::-webkit-scrollbar-thumb {
    background: #1c1c1e;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7c7c7c;
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
    }

    .chat-container {
        width: 100%;
        height: 40vh;
    }

    .development-area {
        height: 60vh;
    }
}

.toolbar {
    background-color: #ffffff;
    padding: 10px;
    border: 1px solid #c8c8c8;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.toolbar button {
    padding: 6px 12px;
    background-color: #ffffff;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #000000;
}

.toolbar button:hover {
    background-color: #cfcfcf;
}

.toolbar button.active {
    background-color: #667eea;
    border-color: #667eea;
}

.toolbar select {
    padding: 6px;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    font-size: 14px;
    background-color: #d3d3d3;
    color: #000000;
}

.carousel-main-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Carousel Styles */
.carousel-main-container .carousel-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.carousel-main-container .carousel {
    display: flex;
    position: absolute;
    width: 800%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-main-container .carousel-slide {
    width: 12.5%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    opacity: 0.3;
    background-size: cover;
    background-position: center;
}

/* Chat Interface Styles */
.carousel-main-container .chat-start-container {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 900px;
    text-align: center;
    position: absolute;
    left: 50%;
    margin-left: -450px;
    top: 25%;
    margin-top: -100px;
}

.carousel-main-container .search-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    padding: 8px 16px;
    transition: box-shadow 0.2s;
}

.carousel-main-container .search-container:hover,
.carousel-main-container .search-container:focus-within {
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    border-color: transparent;
}

.carousel-main-container .chat-start-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 8px 0;
    background-color: transparent;
    color: white;
}

.carousel-main-container .chat-start-input::placeholder {
    color: #9aa0a6;
}

.carousel-main-container h1 {
    color: #FFF;
    font-size: 24px;
    margin-bottom: 16px;
}

.carousel-main-container .template {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-image-big {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.navbar-custom {
    background-color: #ffffff;
    border-bottom: 1px solid #d4d4d4;
    padding: 0.75rem 1rem;
    position: absolute;
    justify-content: space-between;
    padding-top: .5rem;
    padding-bottom: .5rem;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 3rem;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    left: 30px;
}

.logo {
    font-size: 1.25rem;
    font-weight: bold;
    color: #f3f4f6;
}

.nav-button {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: transparent;
    border: none;
    color: #e5e7eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.nav-button:hover {
    background-color: #d6d6d6;
}

.search-top-container {
    flex: 1;
    width: 500px;
    max-width: 500px;
    margin: 0 5rem;
    position: relative;
    display: flex;
    align-items: center;
    left: 50%;
    margin-left: -250px;
}

.search-input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e3e3e3;
    background-color: #ffffff;
    color: #000000;
    font-size: 0.875rem;
}

.search-input:focus {
    outline: none;
    border-color: #60a5fa;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #000000;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    right: 30px;
}

.notification-indicator {
    position: relative;
}

.notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
}

.avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #d8d8d8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    color: #000000;
    border: none;
}

.avatar:hover {
    background-color: #c4c4c4;
}

.dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
    width: 12rem;
    background-color: #f9f9f9;
    border: 1px solid #9e9e9e;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: none;
}

.dropdown.active {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #e5e7eb;
    text-decoration: none;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #374151;
}

.dropdown-item.logout {
    color: #ef4444;
}

.dropdown-item.logout:hover {
    background-color: #374151;
}

.feather {
    width: 20px;
    height: 20px;
}

.inntelligence-sidebar {
    position: fixed;
    left: 0;
    top: 64px; /* Adjust based on your navbar height */
    width: 80px;
    height: calc(100vh - 64px);
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.inntelligence-sidebar .sidebar-seperator {
    width: 100%;
    height: 1px;
    background-color: #dee2e6;
    margin: 20px 0;
}

.inntelligence-sidebar .sidebar-item {
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.inntelligence-sidebar .sidebar-item:hover {
    background-color: #e9ecef;
}

.inntelligence-sidebar .sidebar-item i {
    font-size: 24px;
    margin-bottom: 5px;
    color: #495057;
}

.inntelligence-sidebar .sidebar-item span {
    font-size: 12px;
    color: #6c757d;
    text-align: center;
}