:root {
    --font-sans: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    --font-mono: "JetBrains Mono", "Fira Code", "Consolas", "Monaco", "Courier New", monospace;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
}

body {
    font-family: var(--default-font-family);
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.sidebar {
    width: 240px;
    height: 100vh;
    background-color: white;
    border-right: 1px solid #e9ecef;
    position: fixed;
    left: 64px;
    top: 0;
    overflow-y: auto;
    z-index: 1000;
}

.sidebar-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-header .logo {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-item {
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    gap: 12px;
    transition: all 0.2s;
}

.nav-link:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.nav-link.active {
    background-color: #f3f4f6;
    color: #374151;
    font-weight: 500;
}

.nav-icon {
    width: 16px;
    height: 16px;
    font-size: 16px;
    color: #6b7280;
}

.nav-section {
    margin-top: 24px;
    padding: 0 20px 8px;
}

.nav-section-title {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
}

.badge-beta {
    background-color: #fef3c7;
    color: #d97706;
}

.badge-pro {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.main-content {
    margin-left: 304px;
    min-height: 100vh;
}

.top-nav {
    background-color: white;
    border-bottom: 1px solid #e9ecef;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 304px;
    right: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
}

.breadcrumb-nav a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: #374151;
}

.top-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.btn-dark {
    background-color: #1f2937;
    border-color: #1f2937;
}

.content-area {
    padding: 24px;
    margin-top: 64px;
}

.content-header {
    margin-bottom: 24px;
}

.content-title {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.content-tabs {
    margin-top: 16px;
    border-bottom: 1px solid #e9ecef;
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    color: #6b7280;
    padding: 12px 0;
    margin-right: 32px;
    background: none;
    border-bottom: 2px solid transparent;
}

.nav-tabs .nav-link.active {
    color: #111827;
    background: none;
    border-bottom: 2px solid #3b82f6;
    font-weight: 500;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: #374151;
}


.btn-outline-secondary {
    border-color: #d1d5db;
    color: #374151;
}

.search-icon {
    color: #6b7280;
}

.create-btn {
    background-color: #059669;
    border-color: #059669;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 24px;
    left: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #6b7280;
}

/* Animações para dropdown */
.sidebar-nav {
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.sidebar-nav.collapsed {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
}

.sidebar-nav.expanded {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.nav-icon {
    transition: transform 0.3s ease-in-out, color 0.2s ease-in-out;
}

.nav-icon.rotating {
    transform: rotate(180deg);
}

/* Animação suave para mudança de ícones */
.section-icon {
    transition: all 0.3s ease-in-out;
}

/* Icon Sidebar */
.icon-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 64px;
    height: 100vh;
    background-color: #f8f9fa;
    border-right: 1px solid #e9ecef;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.icon-sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
}

.icon-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    position: relative;
}

.icon-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.icon-item.active {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.icon-item.active::after {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background-color: #10b981;
    border-radius: 0 2px 2px 0;
}

.icon-bg {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
}

.icon-bg.purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.icon-bg.teal {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
}

.icon-bg.green {
    background: linear-gradient(135deg, #10B981, #059669);
}

.icon-bg.blue {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.icon-bg.orange {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.icon-bg.white {
    background: white;
    color: #374151;
    border: 2px solid #E5E7EB;
}

.icon-bg.white:hover {
    border-color: #D1D5DB;
}

/* Account Section */
.icon-sidebar-account {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}

.icon-bg.account {
    background: linear-gradient(135deg, #6B7280, #4B5563);
    color: white;
}

.icon-bg.account:hover {
    background: linear-gradient(135deg, #4B5563, #374151);
}

/* Tab Navigation Styles */
.content-tabs-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    border-bottom: 1px solid #e9ecef;
}

.nav-tabs .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.nav-tabs .nav-link i {
    font-size: 14px;
    opacity: 0.7;
}

.content-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Tab Content Container */
.tab-content-container {
    margin-top: 24px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.content-card h3 {
    margin: 0 0 8px 0;
    color: #111827;
    font-size: 20px;
    font-weight: 600;
}

.content-card p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.stat-info h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.stat-info p {
    margin: 4px 0 0 0;
    color: #6b7280;
    font-size: 14px;
}

/* Permissions List */
.permissions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.permission-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.permission-item i {
    color: #6b7280;
    width: 20px;
}

.permission-item span:first-of-type {
    flex: 1;
    font-weight: 500;
}

/* Billing Info */
.billing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.billing-card {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.billing-card h4 {
    margin: 0 0 12px 0;
    color: #111827;
    font-size: 16px;
    font-weight: 600;
}

.plan-name {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
}

.plan-price {
    font-size: 24px;
    font-weight: 700;
    color: #059669;
    margin: 0;
}

.next-billing {
    color: #6b7280;
    margin: 0 0 8px 0;
}

.amount {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

/* Members List */
.members-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.member-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.member-avatar {
    width: 40px;
    height: 40px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.member-info {
    flex: 1;
}

.member-info h5 {
    margin: 0 0 4px 0;
    color: #111827;
    font-size: 16px;
    font-weight: 600;
}

.member-info p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.member-role {
    padding: 4px 12px;
    background: #dbeafe;
    color: #1d4ed8;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

/* Badge Styles */
.badge-success {
    background-color: #d1fae5;
    color: #065f46;
}

.badge-warning {
    background-color: #fef3c7;
    color: #92400e;
}

.badge-info {
    background-color: #dbeafe;
    color: #1e40af;
}

.font-size-12 {
    font-size: 12px;
}
.font-size-16 {
    font-size: 16px;
}

/* Classes para substituir estilos inline */
.sidebar-header-title {
    font-weight: 500;
    color: #111827;
}

.sidebar-header-chevron {
    color: #6b7280;
}

.sidebar-content-padding {
    padding: 16px 0;
}

.search-container {
    padding: 0 20px;
    margin-bottom: 16px;
}

.search-input-wrapper {
    position: relative;
}

.search-icon-positioned {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 14px;
}

.search-input {
    padding-left: 36px;
    font-size: 14px;
    border-color: #d1d5db;
}

.search-shortcut {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 12px;
}

.section-icon-clickable {
    cursor: pointer;
}

.section-icon-small {
    font-size: 10px;
    cursor: pointer;
}

.content-area-full-height {
    height: 100dvh;
}

.log-info {
    color: #6b7280;
    margin-top: 8px;
}

.avatar-positioned {
    position: fixed;
    bottom: 24px;
    left: 84px;
}

/* Customização da barra de scroll */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Para Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

/* Toast Styles */
.toast-container {
    z-index: 1055;
}

.toast {
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    border-radius: 8px;
    margin-bottom: 12px;
}

.toast-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 16px;
    border-radius: 8px 8px 0 0;
}

.toast-body {
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.4;
}

.toast .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.toast .btn-close:hover {
    opacity: 1;
}

/* Toast Type Specific Styles */
.toast.text-bg-success {
    background-color: #10b981 !important;
    color: white;
}

.toast.text-bg-danger {
    background-color: #ef4444 !important;
    color: white;
}

.toast.text-bg-warning {
    background-color: #f59e0b !important;
    color: white;
}

.toast.text-bg-info {
    background-color: #3b82f6 !important;
    color: white;
}

/* Toast Animation */
.toast.show {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Toast */
@media (max-width: 576px) {
    .toast-container {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
        width: 100%;
    }
}

/* ========================================
   EQUIPES CARDS STYLES
   ======================================== */

/* Equipe Card Container */
.equipe-card {
    transition: all 0.3s ease;
}

.equipe-card-inner {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    background: white;
    position: relative;
    overflow: hidden;
}

.equipe-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.equipe-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.equipe-card-inner:hover::before {
    opacity: 1;
}

/* Equipe Icon */
.equipe-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Badge Styles */
.badge-sm {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
}

/* Statistics */
.stat-item {
    text-align: center;
    padding: 8px;
}

.stat-number {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Empty State */
.empty-state {
    padding: 60px 20px;
}

.empty-state i {
    opacity: 0.5;
}

/* Search and Filter Styles */
.search-container .search-input-wrapper {
    position: relative;
    max-width: 400px;
}

.search-container .search-input {
    padding-left: 40px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    transition: all 0.2s ease;
}

.search-container .search-input:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-container .search-icon-positioned {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 14px;
    z-index: 2;
}

/* Filter Select */
.form-select-sm {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    background-color: white;
}

.form-select-sm:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Button Groups */
.btn-group-sm .btn {
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 6px;
    margin: 0 2px;
}

.btn-outline-primary {
    border-color: #3B82F6;
    color: #3B82F6;
}

.btn-outline-primary:hover {
    background-color: #3B82F6;
    border-color: #3B82F6;
    color: white;
}

.btn-outline-secondary {
    border-color: #6b7280;
    color: #6b7280;
}

.btn-outline-secondary:hover {
    background-color: #6b7280;
    border-color: #6b7280;
    color: white;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 4px;
}

.dropdown-item {
    padding: 8px 16px;
    font-size: 14px;
    color: #374151;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.dropdown-item i {
    width: 16px;
    margin-right: 8px;
    color: #6b7280;
}

.dropdown-item.text-danger {
    color: #ef4444 !important;
}

.dropdown-item.text-danger:hover {
    background-color: #fef2f2;
    color: #dc2626 !important;
}

/* Card Animation */
.equipe-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   TIMELINE STYLES
   ======================================== */

/* Timeline Container */
.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px;
}

.timeline-header {
    margin-bottom: 32px;
    text-align: center;
}

.timeline-title {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
}

.timeline-subtitle {
    color: #6b7280;
    font-size: 16px;
    margin: 0;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e5e7eb;
}

/* Timeline Items */
.timeline-item {
    position: relative;
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Timeline Icons */
.timeline-icon {
    position: absolute;
    left: -32px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 16px;
    z-index: 2;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.timeline-icon-featured {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    width: 44px;
    height: 44px;
    left: -35px;
}

/* Timeline Content */
.timeline-content {
    flex: 1;
    min-width: 0;
}

.timeline-text {
    background: white;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.timeline-text p {
    margin: 0 0 8px 0;
    color: #374151;
    font-size: 15px;
    line-height: 1.5;
}

.timeline-time {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
}

/* Featured Timeline Card */
.timeline-item-featured .timeline-content {
    margin-top: -8px;
}

.timeline-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.timeline-card-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.timeline-card-view {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px dashed #3b82f6;
    padding-bottom: 1px;
}

.timeline-card-view:hover {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
}

.timeline-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
}

.timeline-card-description {
    color: #6b7280;
    font-size: 14px;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.timeline-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.timeline-card-code {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

.timeline-card-tag {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.timeline-card-tag:hover {
    color: #1d4ed8;
}

.timeline-card-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
}

.progress-bar {
    width: 80px;
    height: 6px;
    background-color: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.timeline-card-guests {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
}

.guest-avatars {
    display: flex;
    align-items: center;
    gap: -4px;
}

.guest-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    margin-left: -4px;
}

.guest-avatar:first-child {
    margin-left: 0;
}

.guest-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guest-avatar-more {
    background: #3b82f6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

/* Timeline Executions */
.timeline-execution {
    margin: 8px 0;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #3b82f6;
}

.timeline-execution p {
    margin: 0 0 4px 0;
    font-size: 14px;
}

.timeline-response {
    background: #e5e7eb;
    padding: 6px 8px;
    border-radius: 4px;
    margin-top: 4px;
}

.timeline-response small {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-container {
        padding: 16px;
    }
    
    .timeline {
        padding-left: 32px;
    }
    
    .timeline::before {
        left: 16px;
    }
    
    .timeline-icon {
        left: -24px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .timeline-icon-featured {
        width: 36px;
        height: 36px;
        left: -26px;
    }
    
    .timeline-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .timeline-card-progress {
        width: 100%;
    }
    
    .progress-bar {
        width: 120px;
    }
    
    .equipe-card {
        margin-bottom: 16px;
    }
    
    .equipe-card-inner {
        padding: 16px !important;
    }
    
    .stat-item {
        padding: 4px;
    }
    
    .stat-number {
        font-size: 16px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .timeline-title {
        font-size: 24px;
    }
    
    .timeline-subtitle {
        font-size: 14px;
    }
    
    .timeline-text {
        padding: 12px 16px;
    }
    
    .timeline-card {
        padding: 16px;
    }
    
    .timeline-card-title {
        font-size: 16px;
    }
    
    .search-container {
        margin-bottom: 16px;
    }
    
    .d-flex.justify-content-end {
        justify-content: flex-start !important;
        margin-top: 12px;
    }
    
    .equipe-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .btn-group-sm .btn {
        padding: 4px 8px;
        font-size: 11px;
    }
}

/* ========================================
   LOGIN PAGE STYLES
   ======================================== */

/* Login Container */
.login-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: var(--default-font-family);
}

/* Login Card */
.login-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    position: relative;
}

/* Login Header */
.login-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px 30px;
    position: relative;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.welcome-text h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.welcome-text p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}


/* Logo Circle */
.logo-circle {
    position: absolute;
    top: 40px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #667eea;
    font-size: 18px;
}

/* Login Form */
.login-form {
    padding: 40px 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

/* Password Input */
.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: #374151;
}

/* Form Options */
.form-options {
    margin-bottom: 24px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 24px;
}

.login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Divider */
.divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.divider span {
    background: white;
    padding: 0 16px;
    color: #6b7280;
    font-size: 14px;
    position: relative;
}

/* Social Login */
.social-login {
    text-align: center;
    margin-bottom: 24px;
}

.social-text {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px 0;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    transition: all 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.google {
    background: #db4437;
}

/* Forgot Password */
.forgot-password {
    text-align: center;
}

.forgot-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.forgot-link:hover {
    color: #374151;
}

/* Login Footer */
.login-footer {
    text-align: center;
    margin-top: 32px;
    color: #6b7280;
}

.login-footer p {
    margin: 0 0 8px 0;
    font-size: 14px;
}

.signup-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.signup-link:hover {
    color: #5a67d8;
}

.copyright {
    font-size: 12px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 480px) {
    .login-container {
        padding: 16px;
    }
    
    .login-card {
        border-radius: 16px;
    }
    
    .login-header {
        padding: 30px 20px 20px;
    }
    
    .welcome-text h2 {
        font-size: 20px;
    }
    
    .login-form {
        padding: 30px 20px;
    }
    
    .illustration {
        width: 60px;
        height: 45px;
    }
    
    .person-head {
        width: 15px;
        height: 15px;
        top: 3px;
        left: 12px;
    }
    
    .person-body {
        width: 20px;
        height: 25px;
        top: 18px;
        left: 10px;
    }
    
    .desk {
        width: 30px;
        height: 6px;
        bottom: 8px;
        left: 3px;
    }
    
    .monitor {
        width: 12px;
        height: 10px;
        top: 12px;
        right: 8px;
    }
    
    .plant {
        width: 6px;
        height: 12px;
        bottom: 3px;
        right: 3px;
    }
    
    .logo-circle {
        width: 36px;
        height: 36px;
        top: -18px;
        right: 25px;
        font-size: 16px;
    }
}

/* ========================================
   REGISTER PAGE SPECIFIC STYLES
   ======================================== */

/* Terms Links */
.terms-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.terms-link:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* Register specific adjustments */
.register-form .form-group {
    margin-bottom: 20px;
}

.register-form .form-options {
    margin-bottom: 20px;
}

.register-form .checkbox-container {
    font-size: 13px;
    line-height: 1.4;
}

/* Password strength indicator (optional) */
.password-strength {
    margin-top: 8px;
    font-size: 12px;
}

.password-strength.weak {
    color: #ef4444;
}

.password-strength.medium {
    color: #f59e0b;
}

.password-strength.strong {
    color: #10b981;
}

/* Form validation styles */
.form-control.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control.is-valid {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 4px;
    font-size: 12px;
    color: #ef4444;
}

.valid-feedback {
    display: block;
    width: 100%;
    margin-top: 4px;
    font-size: 12px;
    color: #10b981;
}

/* Loading state for register button */
.login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Success message */
.register-success {
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.register-success i {
    margin-right: 8px;
    color: #10b981;
}