/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background: #1c1c1c;
}

.hide {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(100%);
    transition: all 0.5s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

@media (prefers-reduced-motion) {
    .hide {
        transition: none;
    }
}

:root {
    --primary-color: #1c1c1c;
    --primary-dark: #1a51b0;
    --secondary-color: white;
    --accent-color: #e74c3c;
    --text-dark: #3b3b3b;
    --text-light: #7f8c8d;
    --bg-light: #f0f0f0;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

.auth-buttons a {
    border: 2px solid black;
    color: black;
    transition: var(--transition);
}

.sign {
    color: white !important;
    background-color: black;
}

.sign:hover {
    background-color: white;
    color: black !important;
}

.log:hover {
    color: white !important;
    background-color: black;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    /* box-shadow: var(--shadow-hover); */
    color: #1c1c1c;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #1c1c1c;
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: transparent;
    /* box-shadow: var(--shadow-hover); */
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Header */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-image {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    transform: rotate(45deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 280px;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    transition: var(--transition);
}

.cart-icon:hover {
    background-color: var(--primary-color);
    color: white;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    transition: var(--transition);
}

.logout-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: 
        url('../images/hero-bg.jpg') center/cover fixed;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    color: white;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
} */

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 30px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    gap: 10px;
}

/* Printing Sections */
.printing-section {
    padding: 100px 0;
}

.printing-section:nth-child(even) {
    background-color: var(--bg-white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    text-align: left;
}

.section-header .section-title::after {
    left: 0;
    transform: none;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.view-all:hover {
    gap: 12px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-white);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: #f5f7fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-category {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
    background-color: var(--bg-light);
    padding: 4px 10px;
    display: inline-block;
    align-self: flex-start;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
}

/* All Services Section */
.all-services-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-size: 1rem;
    min-width: 180px;
}

.search-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 10px 15px;
    padding-right: 45px;
    border: 1px solid var(--border-color);
    width: 300px;
    font-size: 1rem;
}

.search-btn {
    position: absolute;
    right: 5px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-btn:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-outline {
    color: white;
    border-color: white;
}

.cta-actions .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: #1c1c1c;
    color: #ddd;
    padding: 80px 80px 0 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-section p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 1610px) {
    .services-overview {
        padding: 50px;
    }

    .printing-section {
        padding: 50px;
    }

    .all-services-section {
        padding: 50px;
    }
}

@media (max-width: 1448px) {
    .nav-links {
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 20px;
        display: none;
        margin-bottom: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .navbar {
        flex-wrap: wrap;
    }

    .user-info, .auth-buttons {
        display: none !important;
    }
    
    .user-info.active, .auth-buttons.active {
        display: flex !important;
        gap: 5px;
    }

    .user-info.active {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-input {
        width: 100%;
    }
}

@media (max-width: 768px) { 
    .user-info {
        justify-content: center;
    }

    .logo span {
        display: none;
    }

    .services-overview {
        font-size: 80%;
    }

    .printing-section {
        font-size: 80%;
    }

    .all-services-section {
        font-size: 80%;
    }

    .cta-content h2 {
        font-size: 120%;
    }

    .cta-content p {
        font-size: 80%;
    }

    .hero-content {
        font-size: 80%;
    }

    .hero {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions a {
        font-size: 90%;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .footer {
        font-size: 80%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-options {
        flex-direction: column;
        width: 100%;
    }
    
    .filter-select {
        width: 100%;
    }

    .logo {
        font-size: 120%;
    }

    .auth-buttons a {
        font-size: 80%;
    }
}

@media (max-width: 419.5px) {
    .user-info {
        justify-content: flex-start;
    }

    .features {
        margin-bottom: 20px;
        margin-top: 20px;
    }
}

/* Chat Styles */
.chat-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    margin-right: 10px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.chat-icon:hover {
    background: #1c1c1c;
    color: white;
}

.chat-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-color);
    color: white;
    font-size: 11px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border-radius: 50%;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 380px;
    height: 500px;
    background: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-widget.open {
    display: flex;
    animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: #1c1c1c;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-align: center;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
}

.chat-back-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    display: none;
}

.chat-back-btn.visible {
    display: block;
}

.chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-conversations {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: block;
}

.chat-conversation-item {
    position: relative;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid #ecf0f1;
    background: white;
}

.chat-conversation-item:hover {
    border-color: #1c1c1c;
}

.chat-conversation-item.active {
    background: #eff6ff;
    border-color: #2563eb;
}

.conversation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.conversation-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
    flex: 1;
}

.delete-conversation-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    padding: 5px 8px;
    font-size: 12px;
    opacity: 0.7;
    transition: all 0.2s;
    z-index: 2; /* Ensure button is above clickable area */
}

.delete-conversation-btn:hover {
    background: #fdf2f2;
    opacity: 1;
    transform: scale(1.1);
}

.conversation-last-message {
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 8px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conversation-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.conversation-time {
    color: #9ca3af;
}

.conversation-unread {
    background: var(--accent-color);
    color: white;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
}

.chat-new-btn {
    background: transparent;
    color:  rgb(49, 172, 49);
    border: 2px solid rgb(49, 172, 49);
    padding: 10px 15px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s ease;
    margin-bottom: 10px;
}

.chat-new-btn:hover {
    background-color: rgba(0, 255, 0, 0.159);
}

.chat-messages {
    flex: 1;
    display: none;
    flex-direction: column;
    /* padding: 15px; */
    overflow-y: auto;
}

.chat-messages.active {
    display: flex;
}

.messages-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.message-item {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.message-item.sent {
    align-items: flex-end;
    margin-right: 15px;
}

.message-item.received {
    align-items: flex-start;
    margin-left: 25px;
}

.message-sender {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #6b7280;
    text-transform: capitalize;
}

.message-bubble {
    max-width: 70%;
    padding: 10px 15px;
    border-radius: 18px;
    position: relative;
}

.message-item.sent .message-bubble {
    background: #1c1c1c;
    color: white;
    border-bottom-right-radius: 4px;
}

.message-item.received .message-bubble {
    background: #f3f4f6;
    color: #1f2937;
    border-top-left-radius: 0;
}

.message-text {
    word-wrap: break-word;
}

.message-time {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 5px;
    text-align: right;
}

.message-item.sent .message-time {
    color: rgba(255, 255, 255, 0.8);
}

.chat-input-area {
    padding: 15px;
    border-top: 1px solid #e5e7eb;
    display: none;
}

.chat-input-area.active {
    display: block;
}

.chat-input-wrapper {
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    resize: none;
    min-height: 44px;
    max-height: 120px;
    font-family: inherit;
}

.chat-input:focus {
    outline: none;
    border-color: #2563eb;
}

.chat-send-btn {
    background: #2563eb;
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.chat-send-btn:hover {
    background: #1d4ed8;
}

.chat-send-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.chat-empty {
    text-align: center;
    padding: 40px 20px;
    color: #9ca3af;
}

.chat-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Responsive Chat */
@media (max-width: 768px) {
    .chat-widget {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
    }
}

.chat-loader {
    text-align: center;
    padding: 15px;
    color: #666;
    font-size: 14px;
    background: #f5f5f5;
    margin: 10px;
}

.chat-loader i {
    margin-right: 8px;
}

.no-admins-message {
    text-align: center;
    padding: 20px;
    color: #e74c3c;
    background: #fdf2f2;
    margin: 10px;
    border: 1px solid #fadbd8;
}

.admin-badge {
    background: #3498db;
    color: white;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 5px;
}

/* Conversation limit styles */
.conversation-limit-warning {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border: 1px solid #ffb347;
    padding: 12px 15px;
    margin: 10px;
    color: #d35400;
}

.limit-warning-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.limit-warning-content i {
    font-size: 18px;
    color: #e67e22;
    margin-top: 2px;
}

.limit-warning-content strong {
    display: block;
    font-weight: 600;
    margin-bottom: 3px;
}

.limit-warning-content small {
    font-size: 12px;
    opacity: 0.9;
}

/* Disabled button style */
#newChatBtn.limit-reached {
    background: #d3d3d3 !important;
    cursor: not-allowed !important;
    color: #b2b2b2;
    border: none;
    opacity: 0.7;
}

#newChatBtn.limit-reached:hover {
    /* background: #7f8c8d !important; */
    transform: none !important;
}

/* Conversation count badge */
.conversation-count-badge {
    display: inline-block;
    background: #3498db;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    margin-left: 8px;
}

.conversation-count-badge.limit-reached {
    background: #e74c3c;
}

/* Message styling for limit warnings */
.conversation-limit-message {
    text-align: center;
    padding: 15px;
    background: #fff3cd;
    color: #856404;
    margin: 10px;
    border: 1px solid #ffeaa7;
    font-size: 14px;
}

.conversation-limit-message i {
    margin-right: 8px;
    color: #f39c12;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 10px;
    /* background: linear-gradient(135deg, #ffd2d2 0%, #fc9f9f 100%); */
    border: 1px solid #ff0000;
    padding: 12px 15px;
    margin: 10px;
    color: #ff0000;
}

.success-content i {
    color: #ff0000;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features {
    display: flex;
    gap: 20px;
}