Files
limitless-ui/src/styles.css
Claude cf068ce4ec chore: initialize @limitless/ui git repo + add AppShell
This brings the long-untracked @limitless/ui source tree under version
control. Until now /srv/k8s/templates/limitless-ui has been a plain
file: dependency consumed by gscChronos / gscCRM / gscAdmin, with
copies scattered across web/gsc{Portal,WWW,Aether,Register}/ and
apps/gsc{Meet,Share}/. None were git-tracked.

Treating /srv/k8s/templates/limitless-ui as the canonical going
forward; secondary copies should be replaced with this version
in their consumers' Dockerfiles when they next get touched.

Changes in this initial commit beyond the snapshot:
- Add src/layout/AppShell.tsx — runtime-loaded chrome (header,
  sidebar, footer) backed by gsc-shell-api. Public surface:
    AppShell, ShellProvider, useShell, ShellConfig types
  Framework-agnostic (no Next.js dep). Apps pass appKey + apiUrl +
  getToken; AppShell composes the existing PageShell / Navbar /
  Sidebar / Footer primitives with API data.
- Re-export AppShell from src/index.ts.
- Fix build script: `tsc -p tsconfig.json --noEmit false`. The bare
  `tsc` command was a no-op because tsconfig.json sets noEmit:true
  for typecheck speed. Existing dist/ only existed because of an
  earlier emit; clean rebuilds were silently broken.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-10 09:42:57 +02:00

10716 lines
200 KiB
CSS

/* ==============================================================================
* Limitless UI - Layout 3 (Detached Layout) Styles
* ============================================================================== */
/* ------------------------------------------------------------------------------
* CSS Variables / Theme Colors
* ---------------------------------------------------------------------------- */
:root {
--ll-primary: #3f51b5;
--ll-secondary: #6c757d;
--ll-success: #4caf50;
--ll-info: #00bcd4;
--ll-warning: #ff5722;
--ll-danger: #f44336;
--ll-light: #f5f5f5;
--ll-dark: #263238;
--ll-surface: #ffffff;
--ll-border: #ddd;
--ll-indigo: #3f51b5;
--ll-sidebar-width: 16.875rem;
--ll-navbar-height: 3.00003rem;
}
.ll-theme-dark {
--ll-primary: #7986cb;
--ll-secondary: #9ca3af;
--ll-success: #81c784;
--ll-info: #4dd0e1;
--ll-warning: #ffab91;
--ll-danger: #ef5350;
--ll-light: #1f2937;
--ll-dark: #0b0f14;
--ll-surface: #1e293b;
--ll-border: #374151;
color: #e5e7eb;
background-color: var(--ll-dark);
}
/* ------------------------------------------------------------------------------
* Core Layout Structure
* ---------------------------------------------------------------------------- */
html {
display: flex;
flex-direction: column;
}
body {
min-height: 100vh;
display: flex;
flex-direction: column;
flex: 1;
}
.page-content {
display: flex;
flex-grow: 1;
padding: 1.25rem 0.625rem;
}
.page-content.pt-0 {
padding-top: 0;
}
.content-wrapper {
display: flex;
flex-direction: column;
flex: 1;
overflow: auto;
}
.content {
flex-grow: 1;
margin-left: 0.625rem;
margin-right: 0.625rem;
}
.content::after {
display: block;
clear: both;
content: "";
}
/* ------------------------------------------------------------------------------
* Page Header
* ---------------------------------------------------------------------------- */
.page-header {
position: relative;
}
.page-title {
padding: 2rem 0;
position: relative;
}
.page-title h1, .page-title h2, .page-title h3, .page-title h4, .page-title h5, .page-title h6 {
margin: 0;
}
.page-header-content {
position: relative;
padding: 0 1.25rem;
}
.page-header-light {
background-color: #fff;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.page-header-dark {
background-color: #273246;
color: #fff;
margin-bottom: 1.25rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
/* Header elements */
.header-elements-md-inline {
display: flex;
flex-direction: column;
}
@media (min-width: 768px) {
.header-elements-md-inline {
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.header-elements-md-inline .header-elements {
display: flex !important;
}
}
.header-elements-toggle {
display: none;
}
@media (max-width: 767.98px) {
.header-elements-toggle {
display: block;
}
}
/* Breadcrumb line */
.breadcrumb-line {
position: relative;
padding: 0.625rem 1.25rem;
border-top: 1px solid rgba(0, 0, 0, 0.125);
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
background-color: #fafafa;
}
.breadcrumb-line-light {
background-color: #fafafa;
}
.breadcrumb-line-dark {
background-color: rgba(0, 0, 0, 0.1);
}
.breadcrumb-elements-item {
padding: 0.5rem 1rem;
color: inherit;
text-decoration: none;
}
.breadcrumb-elements-item:hover {
color: inherit;
text-decoration: none;
}
/* ------------------------------------------------------------------------------
* Sidebar
* ---------------------------------------------------------------------------- */
.sidebar {
position: fixed;
top: 0;
bottom: 0;
box-sizing: content-box;
flex: 0 0 auto;
width: var(--ll-sidebar-width);
z-index: 1040;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
transition: all ease-in-out 0.15s;
}
.sidebar.sidebar-main-resized {
--ll-sidebar-width: 3.5rem;
--ll-sidebar-collapsed-width: 3.5rem;
--sidebar-width: 3.5rem;
}
@media (prefers-reduced-motion: reduce) {
.sidebar {
transition: none;
}
}
.sidebar-main,
.sidebar-main .sidebar-content,
.sidebar-secondary,
.sidebar-secondary .sidebar-content {
left: -18.5625rem;
}
.sidebar-right,
.sidebar-right .sidebar-content {
right: -18.5625rem;
}
/* Layout 3 detached sidebar */
@media (min-width: 768px) {
.sidebar-expand-md {
position: static;
transition: none;
}
.sidebar-expand-md,
.sidebar-expand-md .sidebar-content {
left: auto;
right: auto;
}
.sidebar-expand-md .sidebar-content {
position: static;
overflow: visible;
}
}
@media (min-width: 992px) {
.sidebar-expand-lg {
position: static;
transition: width 0.2s ease-in-out;
box-shadow: none;
width: var(--ll-sidebar-width);
z-index: auto;
}
.sidebar-expand-lg.sidebar-collapsed {
width: var(--ll-sidebar-collapsed-width, 60px);
display: block !important; /* Override all.min.css display: none */
}
.sidebar-expand-lg,
.sidebar-expand-lg .sidebar-content {
left: auto;
right: auto;
}
.sidebar-expand-lg .sidebar-content {
position: static;
overflow: visible;
top: auto;
bottom: auto;
width: 100%;
}
.sidebar-expand-lg .sidebar-mobile-toggler {
display: none;
}
/* Remove card styling for detached layout */
.sidebar-expand-lg .card-sidebar-mobile {
border: 0;
box-shadow: none;
background: transparent;
}
}
@media (min-width: 1200px) {
.sidebar-expand-xl {
position: static;
transition: width 0.2s ease-in-out;
box-shadow: none;
width: var(--ll-sidebar-width);
z-index: auto;
}
.sidebar-expand-xl.sidebar-collapsed {
width: var(--ll-sidebar-collapsed-width, 60px);
display: block !important; /* Override all.min.css display: none */
}
.sidebar-expand-xl,
.sidebar-expand-xl .sidebar-content {
left: auto;
right: auto;
}
.sidebar-expand-xl .sidebar-content {
position: static;
overflow: visible;
top: auto;
bottom: auto;
width: 100%;
}
.sidebar-expand-xl .sidebar-mobile-toggler {
display: none;
}
/* Remove card styling for detached layout */
.sidebar-expand-xl .card-sidebar-mobile {
border: 0;
box-shadow: none;
background: transparent;
}
}
.sidebar-content {
position: fixed;
top: var(--ll-navbar-height);
bottom: 0;
width: inherit;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
transition: left ease-in-out 0.15s, right ease-in-out 0.15s;
}
@media (prefers-reduced-motion: reduce) {
.sidebar-content {
transition: none;
}
}
/* Sidebar colors */
.sidebar-light {
background-color: #fff;
color: #333;
}
.sidebar-dark {
background-color: #263238;
color: rgba(255, 255, 255, 0.9);
}
/* Sidebar mobile toggler */
.sidebar-mobile-toggler {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.75rem 1.25rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
.sidebar-expand-md .sidebar-mobile-toggler {
display: none;
}
}
/* Sidebar user material style */
.sidebar-user-material {
background: linear-gradient(to right bottom, #3f51b5, #303f9f);
}
.sidebar-user-material-body {
padding: 0;
}
.sidebar-user-material-body .card-body {
background: rgba(0, 0, 0, 0.1);
}
.sidebar-user-material-footer {
padding: 0.75rem 1.25rem;
background: rgba(0, 0, 0, 0.15);
}
.text-shadow-dark {
text-shadow: 0 0 0.1875rem rgba(0, 0, 0, 0.5);
}
/* Card for sidebar mobile */
.card-sidebar-mobile {
border-radius: 0;
border: 0;
box-shadow: none;
}
/* ------------------------------------------------------------------------------
* Sidebar Navigation
* ---------------------------------------------------------------------------- */
.nav-sidebar {
flex-direction: column;
}
.nav-sidebar .nav-item:not(.nav-item-header):first-child {
padding-top: 0.5rem;
}
.nav-sidebar .nav-item:not(.nav-item-header):last-child {
padding-bottom: 0.5rem;
}
.nav-sidebar .nav-item:not(.nav-item-divider) {
margin-bottom: 1px;
}
.nav-sidebar > .nav-item > .nav-link {
font-weight: 500;
}
.nav-sidebar .nav-link {
position: relative;
display: flex;
align-items: flex-start;
padding: 0.75rem 1.25rem;
transition: background-color ease-in-out 0.15s, color ease-in-out 0.15s;
}
@media (prefers-reduced-motion: reduce) {
.nav-sidebar .nav-link {
transition: none;
}
}
.nav-sidebar .nav-link i {
margin-right: 1.25rem;
margin-top: 0.12502rem;
margin-bottom: 0.12502rem;
top: 0;
}
.nav-sidebar .nav-link.disabled,
.nav-sidebar .nav-link.disabled:hover,
.nav-sidebar .nav-link.disabled:focus {
background-color: transparent;
opacity: 0.5;
}
/* Light sidebar navigation */
.sidebar-light .nav-sidebar .nav-link {
color: rgba(51, 51, 51, 0.85);
}
.sidebar-light .nav-sidebar .nav-link:hover,
.sidebar-light .nav-sidebar .nav-link:focus {
color: #333;
background-color: #f5f5f5;
}
.sidebar-light .nav-sidebar .nav-link.active {
color: #333;
background-color: #f5f5f5;
}
/* Dark sidebar navigation */
.sidebar-dark .nav-sidebar .nav-link {
color: rgba(255, 255, 255, 0.9);
}
.sidebar-dark .nav-sidebar .nav-link:hover,
.sidebar-dark .nav-sidebar .nav-link:focus {
color: #fff;
background-color: rgba(255, 255, 255, 0.1);
}
.sidebar-dark .nav-sidebar .nav-link.active {
color: #fff;
background-color: rgba(255, 255, 255, 0.1);
}
/* Navigation item header */
.nav-item-header {
padding: 0.75rem 1.25rem;
margin-top: 0.5rem;
color: rgba(0, 0, 0, 0.5);
}
.sidebar-dark .nav-item-header {
color: rgba(255, 255, 255, 0.5);
}
.nav-item-header > i {
display: none;
}
/* Navigation item divider */
.nav-item-divider {
margin: 0.5rem 0;
height: 1px;
background-color: rgba(0, 0, 0, 0.1);
}
.sidebar-dark .nav-item-divider {
background-color: rgba(255, 255, 255, 0.1);
}
/* Submenu */
.nav-item-submenu > .nav-link {
padding-right: 2.75rem;
}
/* Chevron is now rendered by React component, not CSS */
.nav-item-submenu > .nav-link:after {
display: none;
}
@media (prefers-reduced-motion: reduce) {
.nav-item-submenu > .nav-link:after {
transition: none;
}
}
.nav-item-submenu.nav-item-open > .nav-link:after {
transform: rotate(90deg);
}
.nav-group-sub {
display: none;
}
.nav-group-sub .nav-link {
padding: 0.625rem 1.25rem 0.625rem 3.5rem;
}
.nav-group-sub .nav-group-sub .nav-link {
padding-left: 4.75rem;
}
.nav-group-sub .nav-group-sub .nav-group-sub .nav-link {
padding-left: 6rem;
}
.nav-group-sub .nav-item-submenu > .nav-link:after {
top: 0.625rem;
}
.nav-item-expanded > .nav-group-sub,
.nav-item-open > .nav-group-sub {
display: block;
}
/* Collapsed sidebar navigation */
.nav-sidebar-collapsed {
align-items: center;
}
.nav-sidebar-collapsed .nav-link {
padding: 0.75rem 0.5rem;
justify-content: center;
}
.nav-sidebar-collapsed .nav-link i {
margin-right: 0;
}
.nav-sidebar-collapsed .nav-item-header,
.nav-sidebar-collapsed .nav-group-sub {
display: none;
}
/* Detached sidebar styling (for layout_3 style) */
.sidebar-expand-md.sidebar-light,
.sidebar-expand-lg.sidebar-light,
.sidebar-expand-xl.sidebar-light {
border: 1px solid var(--ll-border, #dee2e6);
border-radius: 0.25rem;
overflow: hidden;
}
/* ------------------------------------------------------------------------------
* Navbar
* ---------------------------------------------------------------------------- */
.navbar-nav-link {
padding: 0.75rem 1rem;
color: inherit;
transition: background-color ease-in-out 0.15s, color ease-in-out 0.15s;
}
.navbar-dark .navbar-nav-link {
color: rgba(255, 255, 255, 0.9);
}
.navbar-dark .navbar-nav-link:hover,
.navbar-dark .navbar-nav-link:focus {
color: #fff;
background-color: rgba(255, 255, 255, 0.1);
}
.navbar-light .navbar-nav-link {
color: rgba(51, 51, 51, 0.85);
}
.navbar-light .navbar-nav-link:hover,
.navbar-light .navbar-nav-link:focus {
color: #333;
background-color: rgba(0, 0, 0, 0.04);
}
/* Brand */
.navbar-brand {
padding-top: 0;
padding-bottom: 0;
}
.wmin-200 {
min-width: 200px;
}
/* Background colors */
.bg-indigo {
background-color: #3f51b5 !important;
}
.bg-indigo-400 {
background-color: #5c6bc0 !important;
}
.bg-indigo-700 {
background-color: #303f9f !important;
}
/* ------------------------------------------------------------------------------
* Cards
* ---------------------------------------------------------------------------- */
.ll-card,
.card {
border: 1px solid var(--ll-border);
border-radius: 0.25rem;
background-color: var(--ll-surface);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.ll-card-header,
.card-header {
padding: 0.75rem 1.25rem;
border-bottom: 1px solid var(--ll-border);
background-color: transparent;
}
.card-header.header-elements-inline {
display: flex;
align-items: center;
justify-content: space-between;
}
.ll-card-body,
.card-body {
padding: 1.25rem;
}
.ll-card-footer,
.card-footer {
padding: 0.75rem 1.25rem;
border-top: 1px solid var(--ll-border);
background-color: transparent;
}
/* ------------------------------------------------------------------------------
* Utility Classes
* ---------------------------------------------------------------------------- */
.ll-surface {
background-color: var(--ll-surface);
border: 1px solid var(--ll-border);
}
.ll-stack {
display: flex;
gap: 0.75rem;
}
.ll-stack.vertical {
flex-direction: column;
}
/* Font weight */
.font-weight-semibold,
.fw-semibold {
font-weight: 600;
}
/* Font size */
.font-size-xs {
font-size: 0.75rem;
}
.font-size-sm {
font-size: 0.875rem;
}
/* Line height */
.line-height-xs {
line-height: 1.2;
}
/* Text colors */
.text-indigo-700 {
color: #303f9f !important;
}
/* Shadow utilities */
.shadow-1 {
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.shadow-2 {
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
/* Badge mark */
.badge-mark {
width: 0.5rem;
height: 0.5rem;
padding: 0;
border: 2px solid;
border-radius: 50%;
}
/* List icons */
.list-icons {
display: flex;
align-items: center;
}
.list-icons-item {
display: inline-block;
padding: 0.25rem;
margin-left: 0.25rem;
color: inherit;
}
.list-icons-item:first-child {
margin-left: 0;
}
/* Dropdown content */
.dropdown-content {
position: relative;
padding: 0;
}
.dropdown-content-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.75rem 1rem;
border-bottom: 1px solid var(--ll-border);
}
.dropdown-content-body {
padding: 0.75rem 1rem;
}
.dropdown-content-footer {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.75rem 1rem;
border-top: 1px solid var(--ll-border);
}
.dropdown-scrollable {
max-height: 340px;
overflow-y: auto;
}
/* Width utilities */
.wmin-md-350 {
min-width: 350px;
}
@media (max-width: 767.98px) {
.wmin-md-350 {
min-width: auto;
}
}
/* Mobile classes */
.sidebar-mobile-main .sidebar-main,
.sidebar-mobile-main .sidebar-main .sidebar-content {
left: 0;
}
.sidebar-mobile-main .sidebar-main {
box-shadow: 0.25rem 0 1rem rgba(0, 0, 0, 0.35);
}
.sidebar-mobile-secondary .sidebar-secondary,
.sidebar-mobile-secondary .sidebar-secondary .sidebar-content {
left: 0;
}
.sidebar-mobile-right .sidebar-right,
.sidebar-mobile-right .sidebar-right .sidebar-content {
right: 0;
}
/* Responsive visibility */
@media (max-width: 767.98px) {
.d-md-block {
display: none !important;
}
}
@media (min-width: 768px) {
.d-md-block {
display: block !important;
}
.d-md-none {
display: none !important;
}
}
/* ------------------------------------------------------------------------------
* Spinner / Loader
* ---------------------------------------------------------------------------- */
.ll-spinner-border {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: text-bottom;
border: 0.25em solid currentColor;
border-right-color: transparent;
border-radius: 50%;
animation: ll-spinner-border 0.75s linear infinite;
}
.ll-spinner-grow {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: text-bottom;
background-color: currentColor;
border-radius: 50%;
opacity: 0;
animation: ll-spinner-grow 0.75s linear infinite;
}
.ll-spinner-sm {
width: 1rem;
height: 1rem;
border-width: 0.2em;
}
.ll-spinner-lg {
width: 3rem;
height: 3rem;
border-width: 0.3em;
}
.ll-spinner-primary { color: var(--ll-primary); }
.ll-spinner-secondary { color: var(--ll-secondary); }
.ll-spinner-success { color: var(--ll-success); }
.ll-spinner-danger { color: var(--ll-danger); }
.ll-spinner-warning { color: var(--ll-warning); }
.ll-spinner-info { color: var(--ll-info); }
.ll-spinner-light { color: var(--ll-light); }
.ll-spinner-dark { color: var(--ll-dark); }
@keyframes ll-spinner-border {
to { transform: rotate(360deg); }
}
@keyframes ll-spinner-grow {
0% { transform: scale(0); }
50% { opacity: 1; transform: scale(1); }
}
/* Spinner Overlay */
.ll-spinner-overlay-container {
position: relative;
}
.ll-spinner-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(255, 255, 255, 0.8);
z-index: 1000;
}
.ll-spinner-overlay-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
}
.ll-spinner-overlay-text {
font-size: 0.875rem;
color: #666;
}
/* BlockUI */
.ll-blockui-container {
position: relative;
}
.ll-blockui-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(255, 255, 255, 0.9);
z-index: 1000;
}
.ll-blockui-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.75rem;
}
.ll-blockui-message {
font-size: 0.875rem;
color: #333;
font-weight: 500;
}
/* ------------------------------------------------------------------------------
* Carousel
* ---------------------------------------------------------------------------- */
.ll-carousel {
position: relative;
width: 100%;
overflow: hidden;
}
.ll-carousel-inner {
position: relative;
width: 100%;
}
.ll-carousel-item {
display: none;
position: relative;
width: 100%;
}
.ll-carousel-item.active {
display: block;
}
.ll-carousel-fade .ll-carousel-item {
opacity: 0;
transition: opacity 0.6s ease-in-out;
}
.ll-carousel-fade .ll-carousel-item.active {
opacity: 1;
}
.ll-carousel-image {
width: 100%;
height: auto;
display: block;
}
.ll-carousel-caption {
position: absolute;
bottom: 1.25rem;
left: 15%;
right: 15%;
padding: 1.25rem;
color: #fff;
text-align: center;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 0.25rem;
}
.ll-carousel-caption h5 {
margin-bottom: 0.5rem;
}
.ll-carousel-caption p {
margin-bottom: 0;
}
.ll-carousel-indicators {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
display: flex;
justify-content: center;
padding: 0.5rem;
margin-bottom: 1rem;
list-style: none;
gap: 0.5rem;
z-index: 2;
}
.ll-carousel-indicator {
width: 30px;
height: 3px;
background-color: rgba(255, 255, 255, 0.5);
border: none;
cursor: pointer;
transition: background-color 0.15s ease-in-out;
}
.ll-carousel-indicator.active {
background-color: #fff;
}
.ll-carousel-control {
position: absolute;
top: 0;
bottom: 0;
width: 15%;
display: flex;
align-items: center;
justify-content: center;
background: none;
border: none;
color: #fff;
text-align: center;
opacity: 0.5;
cursor: pointer;
transition: opacity 0.15s ease;
z-index: 1;
}
.ll-carousel-control:hover {
opacity: 0.9;
}
.ll-carousel-control-prev {
left: 0;
}
.ll-carousel-control-next {
right: 0;
}
.ll-carousel-control-icon {
display: inline-block;
width: 2rem;
height: 2rem;
background-repeat: no-repeat;
background-position: center;
background-size: 100% 100%;
}
.ll-carousel-control-prev-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.ll-carousel-control-next-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.ll-carousel-dark .ll-carousel-control-icon {
filter: invert(1);
}
.ll-carousel-dark .ll-carousel-indicator {
background-color: rgba(0, 0, 0, 0.5);
}
.ll-carousel-dark .ll-carousel-indicator.active {
background-color: #000;
}
/* ------------------------------------------------------------------------------
* Offcanvas
* ---------------------------------------------------------------------------- */
.ll-offcanvas {
position: fixed;
z-index: 1045;
display: flex;
flex-direction: column;
max-width: 100%;
background-color: var(--ll-surface);
background-clip: padding-box;
outline: 0;
visibility: hidden;
transition: transform 0.3s ease-in-out, visibility 0.3s;
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.ll-offcanvas-show {
visibility: visible;
}
.ll-offcanvas-start {
top: 0;
left: 0;
bottom: 0;
width: 400px;
border-right: 1px solid var(--ll-border);
transform: translateX(-100%);
}
.ll-offcanvas-start.ll-offcanvas-show {
transform: translateX(0);
}
.ll-offcanvas-end {
top: 0;
right: 0;
bottom: 0;
width: 400px;
border-left: 1px solid var(--ll-border);
transform: translateX(100%);
}
.ll-offcanvas-end.ll-offcanvas-show {
transform: translateX(0);
}
.ll-offcanvas-top {
top: 0;
left: 0;
right: 0;
height: 30vh;
max-height: 100%;
border-bottom: 1px solid var(--ll-border);
transform: translateY(-100%);
}
.ll-offcanvas-top.ll-offcanvas-show {
transform: translateY(0);
}
.ll-offcanvas-bottom {
left: 0;
right: 0;
bottom: 0;
height: 30vh;
max-height: 100%;
border-top: 1px solid var(--ll-border);
transform: translateY(100%);
}
.ll-offcanvas-bottom.ll-offcanvas-show {
transform: translateY(0);
}
.ll-offcanvas-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem;
border-bottom: 1px solid var(--ll-border);
}
.ll-offcanvas-title {
margin: 0;
font-size: 1.25rem;
font-weight: 500;
}
.ll-offcanvas-close {
background: transparent;
border: none;
font-size: 1.5rem;
cursor: pointer;
padding: 0.25rem;
line-height: 1;
opacity: 0.5;
}
.ll-offcanvas-close:hover {
opacity: 1;
}
.ll-offcanvas-body {
flex-grow: 1;
padding: 1rem;
overflow-y: auto;
}
.ll-offcanvas-backdrop {
position: fixed;
top: 0;
left: 0;
z-index: 1040;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.5);
opacity: 0;
visibility: hidden;
transition: opacity 0.15s linear, visibility 0.15s;
}
.ll-offcanvas-backdrop-show {
opacity: 1;
visibility: visible;
}
/* ------------------------------------------------------------------------------
* SweetAlert
* ---------------------------------------------------------------------------- */
.ll-swal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1060;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(0, 0, 0, 0.4);
animation: ll-swal-fade-in 0.3s;
}
.ll-swal-container {
position: relative;
width: 100%;
max-width: 500px;
margin: 1rem;
padding: 1.25rem;
background-color: #fff;
border-radius: 0.5rem;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
text-align: center;
animation: ll-swal-show 0.3s;
}
@keyframes ll-swal-fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes ll-swal-show {
0% { transform: scale(0.7); opacity: 0; }
45% { transform: scale(1.05); opacity: 1; }
80% { transform: scale(0.95); }
100% { transform: scale(1); }
}
.ll-swal-close {
position: absolute;
top: 0.5rem;
right: 0.75rem;
background: transparent;
border: none;
font-size: 1.5rem;
cursor: pointer;
opacity: 0.5;
line-height: 1;
}
.ll-swal-close:hover {
opacity: 1;
}
.ll-swal-icon-container {
margin-bottom: 1rem;
}
.ll-swal-icon {
position: relative;
width: 80px;
height: 80px;
margin: 0 auto;
border-radius: 50%;
border: 4px solid;
}
.ll-swal-icon-success {
border-color: #a5dc86;
}
.ll-swal-icon-success .ll-swal-icon-line {
position: absolute;
display: block;
height: 5px;
background-color: #a5dc86;
border-radius: 2px;
}
.ll-swal-icon-success .ll-swal-icon-line-tip {
width: 25px;
left: 14px;
top: 46px;
transform: rotate(45deg);
}
.ll-swal-icon-success .ll-swal-icon-line-long {
width: 47px;
right: 8px;
top: 38px;
transform: rotate(-45deg);
}
.ll-swal-icon-error {
border-color: #f27474;
}
.ll-swal-icon-error .ll-swal-icon-x-mark {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.ll-swal-icon-error .ll-swal-icon-line {
position: absolute;
display: block;
width: 47px;
height: 5px;
background-color: #f27474;
border-radius: 2px;
}
.ll-swal-icon-error .ll-swal-icon-line-left {
transform: rotate(45deg);
}
.ll-swal-icon-error .ll-swal-icon-line-right {
transform: rotate(-45deg);
}
.ll-swal-icon-warning,
.ll-swal-icon-info {
border-color: #facea8;
}
.ll-swal-icon-info {
border-color: #9de0f6;
}
.ll-swal-icon-warning .ll-swal-icon-body,
.ll-swal-icon-info .ll-swal-icon-body {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 5px;
height: 30px;
top: 10px;
background-color: #f8bb86;
border-radius: 2px;
}
.ll-swal-icon-info .ll-swal-icon-body {
background-color: #3fc3ee;
top: 20px;
height: 24px;
}
.ll-swal-icon-warning .ll-swal-icon-dot,
.ll-swal-icon-info .ll-swal-icon-dot {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 7px;
height: 7px;
bottom: 10px;
background-color: #f8bb86;
border-radius: 50%;
}
.ll-swal-icon-info .ll-swal-icon-dot {
background-color: #3fc3ee;
top: 10px;
bottom: auto;
}
.ll-swal-icon-question {
border-color: #c9dae1;
}
.ll-swal-icon-question-mark {
font-size: 3.75rem;
line-height: 80px;
color: #87adbd;
}
.ll-swal-image img {
max-width: 100%;
margin-bottom: 1rem;
}
.ll-swal-title {
margin: 0 0 0.5rem;
font-size: 1.5rem;
font-weight: 600;
color: #595959;
}
.ll-swal-content {
margin-bottom: 1rem;
color: #545454;
font-size: 1rem;
}
.ll-swal-actions {
display: flex;
justify-content: center;
gap: 0.5rem;
margin-top: 1rem;
}
.ll-swal-btn {
padding: 0.625rem 1.5rem;
border: none;
border-radius: 0.25rem;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
transition: background-color 0.15s, box-shadow 0.15s;
}
.ll-swal-btn-primary { background-color: var(--ll-primary); color: #fff; }
.ll-swal-btn-secondary { background-color: var(--ll-secondary); color: #fff; }
.ll-swal-btn-success { background-color: var(--ll-success); color: #fff; }
.ll-swal-btn-danger { background-color: var(--ll-danger); color: #fff; }
.ll-swal-btn-warning { background-color: var(--ll-warning); color: #fff; }
.ll-swal-btn-info { background-color: var(--ll-info); color: #fff; }
.ll-swal-btn-light { background-color: var(--ll-light); color: #333; }
.ll-swal-btn-dark { background-color: var(--ll-dark); color: #fff; }
.ll-swal-btn:hover {
filter: brightness(1.1);
}
.ll-swal-footer {
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid var(--ll-border);
font-size: 0.875rem;
color: #666;
}
.ll-swal-timer-progress {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 4px;
background-color: rgba(0, 0, 0, 0.1);
border-radius: 0 0 0.5rem 0.5rem;
overflow: hidden;
}
.ll-swal-timer-progress-bar {
height: 100%;
background-color: var(--ll-primary);
transition: width 0.1s linear;
}
/* ------------------------------------------------------------------------------
* Pills
* ---------------------------------------------------------------------------- */
.ll-nav-pills {
display: flex;
flex-wrap: wrap;
list-style: none;
padding: 0;
margin: 0;
gap: 0.25rem;
}
.ll-nav-pills .ll-nav-item {
margin: 0;
}
.ll-nav-pills .ll-nav-link {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
border: none;
border-radius: 0.25rem;
background-color: transparent;
color: inherit;
text-decoration: none;
cursor: pointer;
transition: background-color 0.15s, color 0.15s;
}
.ll-nav-pills .ll-nav-link:hover:not(.disabled) {
background-color: rgba(0, 0, 0, 0.05);
}
.ll-nav-pills .ll-nav-link.active {
background-color: var(--ll-primary);
color: #fff;
}
.ll-nav-pills .ll-nav-link.disabled {
opacity: 0.5;
cursor: not-allowed;
}
.ll-nav-pills-primary .ll-nav-link.active { background-color: var(--ll-primary); }
.ll-nav-pills-secondary .ll-nav-link.active { background-color: var(--ll-secondary); }
.ll-nav-pills-success .ll-nav-link.active { background-color: var(--ll-success); }
.ll-nav-pills-danger .ll-nav-link.active { background-color: var(--ll-danger); }
.ll-nav-pills-warning .ll-nav-link.active { background-color: var(--ll-warning); color: #333; }
.ll-nav-pills-info .ll-nav-link.active { background-color: var(--ll-info); }
.ll-nav-fill .ll-nav-item {
flex: 1 1 auto;
text-align: center;
}
.ll-nav-justified .ll-nav-item {
flex-basis: 0;
flex-grow: 1;
text-align: center;
}
.ll-nav-vertical {
flex-direction: column;
}
.ll-nav-pills-toolbar {
background-color: #f8f9fa;
padding: 0.25rem;
border-radius: 0.25rem;
}
.ll-nav-pills-bordered {
border: 1px solid var(--ll-border);
padding: 0.25rem;
border-radius: 0.25rem;
}
.ll-nav-sm .ll-nav-link {
padding: 0.375rem 0.75rem;
font-size: 0.875rem;
}
.ll-nav-lg .ll-nav-link {
padding: 0.625rem 1.25rem;
font-size: 1.125rem;
}
.ll-pills-container {
display: flex;
flex-direction: column;
gap: 1rem;
}
.ll-pills-vertical {
flex-direction: row;
}
.ll-pills-vertical .ll-nav-pills {
flex-direction: column;
flex-shrink: 0;
}
.ll-pills-content {
flex-grow: 1;
}
.ll-pills-panel {
display: none;
}
.ll-pills-panel.active {
display: block;
}
/* ------------------------------------------------------------------------------
* Slider / Range Slider
* ---------------------------------------------------------------------------- */
.ll-slider {
position: relative;
width: 100%;
padding: 1rem 0;
}
.ll-slider-vertical {
width: auto;
height: 200px;
padding: 0 1rem;
}
.ll-slider-disabled {
opacity: 0.5;
pointer-events: none;
}
.ll-slider-track-container {
position: relative;
cursor: pointer;
}
.ll-slider-horizontal .ll-slider-track-container {
height: 8px;
}
.ll-slider-vertical .ll-slider-track-container {
width: 8px;
height: 100%;
}
.ll-slider-track {
position: absolute;
background-color: #e0e0e0;
border-radius: 4px;
}
.ll-slider-horizontal .ll-slider-track {
top: 0;
left: 0;
right: 0;
height: 100%;
}
.ll-slider-vertical .ll-slider-track {
top: 0;
left: 0;
bottom: 0;
width: 100%;
}
.ll-slider-track-fill {
position: absolute;
border-radius: 4px;
background-color: var(--ll-primary);
}
.ll-slider-horizontal .ll-slider-track-fill {
top: 0;
left: 0;
height: 100%;
}
.ll-slider-vertical .ll-slider-track-fill {
left: 0;
bottom: 0;
width: 100%;
}
.ll-slider-primary .ll-slider-track-fill { background-color: var(--ll-primary); }
.ll-slider-secondary .ll-slider-track-fill { background-color: var(--ll-secondary); }
.ll-slider-success .ll-slider-track-fill { background-color: var(--ll-success); }
.ll-slider-danger .ll-slider-track-fill { background-color: var(--ll-danger); }
.ll-slider-warning .ll-slider-track-fill { background-color: var(--ll-warning); }
.ll-slider-info .ll-slider-track-fill { background-color: var(--ll-info); }
.ll-slider-thumb {
position: absolute;
width: 20px;
height: 20px;
background-color: #fff;
border: 2px solid var(--ll-primary);
border-radius: 50%;
cursor: grab;
transition: transform 0.1s, box-shadow 0.1s;
outline: none;
}
.ll-slider-horizontal .ll-slider-thumb {
top: 50%;
transform: translate(-50%, -50%);
}
.ll-slider-vertical .ll-slider-thumb {
left: 50%;
transform: translate(-50%, 50%);
}
.ll-slider-thumb:hover,
.ll-slider-thumb:focus {
transform: translate(-50%, -50%) scale(1.1);
box-shadow: 0 0 0 8px rgba(63, 81, 181, 0.1);
}
.ll-slider-vertical .ll-slider-thumb:hover,
.ll-slider-vertical .ll-slider-thumb:focus {
transform: translate(-50%, 50%) scale(1.1);
}
.ll-slider-thumb:active {
cursor: grabbing;
}
.ll-slider-tooltip {
position: absolute;
bottom: calc(100% + 8px);
left: 50%;
transform: translateX(-50%);
padding: 0.25rem 0.5rem;
background-color: #333;
color: #fff;
font-size: 0.75rem;
border-radius: 0.25rem;
white-space: nowrap;
}
.ll-slider-tooltip::after {
content: '';
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
border: 4px solid transparent;
border-top-color: #333;
}
.ll-slider-ticks {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
}
.ll-slider-tick {
position: absolute;
}
.ll-slider-horizontal .ll-slider-tick {
transform: translateX(-50%);
}
.ll-slider-tick-mark {
width: 2px;
height: 8px;
background-color: #999;
}
.ll-slider-horizontal .ll-slider-tick-mark {
margin-top: 12px;
}
.ll-slider-tick-label {
font-size: 0.75rem;
color: #666;
margin-top: 4px;
text-align: center;
}
.ll-slider-sm .ll-slider-track-container { height: 4px; }
.ll-slider-sm .ll-slider-thumb { width: 14px; height: 14px; }
.ll-slider-lg .ll-slider-track-container { height: 12px; }
.ll-slider-lg .ll-slider-thumb { width: 26px; height: 26px; }
/* ------------------------------------------------------------------------------
* Tag Input
* ---------------------------------------------------------------------------- */
.ll-tag-input {
position: relative;
}
.ll-tag-input-container {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.375rem;
padding: 0.375rem 0.75rem;
border: 1px solid var(--ll-border);
border-radius: 0.25rem;
background-color: #fff;
cursor: text;
min-height: 2.5rem;
transition: border-color 0.15s, box-shadow 0.15s;
}
.ll-tag-input-container:focus-within {
border-color: var(--ll-primary);
box-shadow: 0 0 0 0.2rem rgba(63, 81, 181, 0.25);
}
.ll-tag-input-disabled .ll-tag-input-container {
background-color: #f5f5f5;
cursor: not-allowed;
}
.ll-tag-input-readonly .ll-tag-input-container {
background-color: #f5f5f5;
}
.ll-tag-input-error .ll-tag-input-container {
border-color: var(--ll-danger);
}
.ll-tag-input-error .ll-tag-input-container:focus-within {
box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25);
}
.ll-tag {
display: inline-flex;
align-items: center;
gap: 0.25rem;
padding: 0.25rem 0.5rem;
border-radius: 0.25rem;
font-size: 0.875rem;
line-height: 1;
color: #fff;
background-color: var(--ll-primary);
}
.ll-tag-primary { background-color: var(--ll-primary); }
.ll-tag-secondary { background-color: var(--ll-secondary); }
.ll-tag-success { background-color: var(--ll-success); }
.ll-tag-danger { background-color: var(--ll-danger); }
.ll-tag-warning { background-color: var(--ll-warning); color: #333; }
.ll-tag-info { background-color: var(--ll-info); }
.ll-tag-light { background-color: var(--ll-light); color: #333; }
.ll-tag-dark { background-color: var(--ll-dark); }
.ll-tag-outline {
background-color: transparent;
border: 1px solid currentColor;
}
.ll-tag-outline.ll-tag-primary { color: var(--ll-primary); }
.ll-tag-outline.ll-tag-secondary { color: var(--ll-secondary); }
.ll-tag-outline.ll-tag-success { color: var(--ll-success); }
.ll-tag-outline.ll-tag-danger { color: var(--ll-danger); }
.ll-tag-outline.ll-tag-warning { color: var(--ll-warning); }
.ll-tag-outline.ll-tag-info { color: var(--ll-info); }
.ll-tag-rounded {
border-radius: 1rem;
}
.ll-tag-clickable {
cursor: pointer;
}
.ll-tag-clickable:hover {
filter: brightness(1.1);
}
.ll-tag-text {
line-height: 1.2;
}
.ll-tag-remove {
background: none;
border: none;
padding: 0;
margin-left: 0.25rem;
font-size: 1rem;
line-height: 1;
color: inherit;
opacity: 0.7;
cursor: pointer;
}
.ll-tag-remove:hover {
opacity: 1;
}
.ll-tag-edit-input {
width: 60px;
padding: 0;
border: none;
background: transparent;
font-size: inherit;
color: inherit;
outline: none;
}
.ll-tag-input-field {
flex: 1;
min-width: 80px;
padding: 0.25rem 0;
border: none;
background: transparent;
font-size: 0.875rem;
outline: none;
}
.ll-tag-input-field::placeholder {
color: #999;
}
.ll-tag-input-clear {
background: none;
border: none;
padding: 0.25rem;
font-size: 1rem;
color: #999;
cursor: pointer;
}
.ll-tag-input-clear:hover {
color: #333;
}
.ll-tag-suggestions {
position: absolute;
top: 100%;
left: 0;
right: 0;
z-index: 1000;
margin: 0.25rem 0 0;
padding: 0;
list-style: none;
background-color: #fff;
border: 1px solid var(--ll-border);
border-radius: 0.25rem;
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
max-height: 200px;
overflow-y: auto;
}
.ll-tag-suggestion {
padding: 0.5rem 0.75rem;
cursor: pointer;
}
.ll-tag-suggestion:hover,
.ll-tag-suggestion.active {
background-color: #f5f5f5;
}
.ll-tag-input-error-message {
margin-top: 0.25rem;
font-size: 0.75rem;
color: var(--ll-danger);
}
.ll-tag-input-sm .ll-tag-input-container {
padding: 0.25rem 0.5rem;
min-height: 2rem;
}
.ll-tag-input-sm .ll-tag {
font-size: 0.75rem;
padding: 0.125rem 0.375rem;
}
.ll-tag-input-lg .ll-tag-input-container {
padding: 0.5rem 1rem;
min-height: 3rem;
}
.ll-tag-input-lg .ll-tag {
font-size: 1rem;
padding: 0.375rem 0.625rem;
}
/* ------------------------------------------------------------------------------
* File Upload / Dropzone
* ---------------------------------------------------------------------------- */
.ll-file-upload {
width: 100%;
}
.ll-file-input-hidden {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
.ll-file-dropzone {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
border: 2px dashed var(--ll-border);
border-radius: 0.5rem;
background-color: #fafafa;
cursor: pointer;
transition: border-color 0.15s, background-color 0.15s;
}
.ll-file-dropzone:hover,
.ll-file-dropzone:focus {
border-color: var(--ll-primary);
background-color: rgba(63, 81, 181, 0.05);
}
.ll-file-dropzone-active {
border-color: var(--ll-primary);
background-color: rgba(63, 81, 181, 0.1);
}
.ll-file-dropzone-disabled {
opacity: 0.5;
cursor: not-allowed;
}
.ll-file-dropzone-content {
text-align: center;
}
.ll-file-dropzone-icon {
margin-bottom: 1rem;
color: #999;
}
.ll-file-dropzone-text {
margin-bottom: 0.5rem;
font-size: 1rem;
color: #666;
}
.ll-file-dropzone-hint {
font-size: 0.75rem;
color: #999;
}
.ll-file-list {
list-style: none;
padding: 0;
margin: 1rem 0 0;
}
.ll-file-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem;
border: 1px solid var(--ll-border);
border-radius: 0.25rem;
margin-bottom: 0.5rem;
background-color: #fff;
}
.ll-file-item-error {
border-color: var(--ll-danger);
background-color: rgba(244, 67, 54, 0.05);
}
.ll-file-preview {
flex-shrink: 0;
width: 48px;
height: 48px;
border-radius: 0.25rem;
overflow: hidden;
}
.ll-file-preview img {
width: 100%;
height: 100%;
object-fit: cover;
}
.ll-file-info {
flex-grow: 1;
min-width: 0;
}
.ll-file-name {
font-weight: 500;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ll-file-meta {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.75rem;
color: #666;
}
.ll-file-status-success {
color: var(--ll-success);
}
.ll-file-status-error {
color: var(--ll-danger);
}
.ll-file-progress {
margin-top: 0.5rem;
height: 4px;
background-color: #e0e0e0;
border-radius: 2px;
overflow: hidden;
}
.ll-file-progress-bar {
height: 100%;
background-color: var(--ll-primary);
transition: width 0.15s;
}
.ll-file-actions {
display: flex;
gap: 0.25rem;
flex-shrink: 0;
}
.ll-file-action {
background: none;
border: none;
width: 28px;
height: 28px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 1rem;
color: #666;
transition: background-color 0.15s;
}
.ll-file-action:hover {
background-color: #f5f5f5;
}
.ll-file-action-remove:hover {
color: var(--ll-danger);
}
.ll-file-action-retry:hover {
color: var(--ll-primary);
}
.ll-file-upload-btn {
margin-top: 1rem;
}
.ll-file-upload-sm .ll-file-dropzone {
padding: 1rem;
}
.ll-file-upload-lg .ll-file-dropzone {
padding: 3rem;
}
/* Utility Classes */
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
.ll-badge {
display: inline-block;
padding: 0.25em 0.5em;
font-size: 0.75em;
font-weight: 600;
line-height: 1;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: 0.25rem;
}
.ll-badge-primary { background-color: var(--ll-primary); color: #fff; }
.ll-badge-secondary { background-color: var(--ll-secondary); color: #fff; }
.ll-badge-success { background-color: var(--ll-success); color: #fff; }
.ll-badge-danger { background-color: var(--ll-danger); color: #fff; }
.ll-badge-warning { background-color: var(--ll-warning); color: #333; }
.ll-badge-info { background-color: var(--ll-info); color: #fff; }
.ll-badge-light { background-color: var(--ll-light); color: #333; }
.ll-badge-dark { background-color: var(--ll-dark); color: #fff; }
.ll-btn {
display: inline-block;
padding: 0.5rem 1rem;
font-size: 1rem;
font-weight: 500;
line-height: 1.5;
text-align: center;
text-decoration: none;
vertical-align: middle;
cursor: pointer;
border: 1px solid transparent;
border-radius: 0.25rem;
transition: color 0.15s, background-color 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.ll-btn-primary { background-color: var(--ll-primary); color: #fff; }
.ll-btn-secondary { background-color: var(--ll-secondary); color: #fff; }
.ll-btn-success { background-color: var(--ll-success); color: #fff; }
.ll-btn-danger { background-color: var(--ll-danger); color: #fff; }
.ll-btn-warning { background-color: var(--ll-warning); color: #333; }
.ll-btn-info { background-color: var(--ll-info); color: #fff; }
.ll-btn-light { background-color: var(--ll-light); color: #333; }
.ll-btn-dark { background-color: var(--ll-dark); color: #fff; }
.ll-btn-outline-primary { color: var(--ll-primary); border-color: var(--ll-primary); background: transparent; }
.ll-btn-outline-secondary { color: var(--ll-secondary); border-color: var(--ll-secondary); background: transparent; }
.ll-btn:hover {
filter: brightness(1.1);
}
.ll-btn:disabled {
opacity: 0.65;
cursor: not-allowed;
}
/* ==============================================================================
* Medium Priority Components
* ============================================================================== */
/* ------------------------------------------------------------------------------
* TreeView
* ---------------------------------------------------------------------------- */
.ll-tree {
list-style: none;
padding: 0;
margin: 0;
}
.ll-tree-children {
list-style: none;
padding: 0;
margin: 0;
}
.ll-tree-node {
position: relative;
}
.ll-tree-node-content {
display: flex;
align-items: center;
padding: 0.375rem 0.5rem;
cursor: pointer;
border-radius: 0.25rem;
transition: background-color 0.15s;
}
.ll-tree-node-content:hover {
background-color: rgba(0, 0, 0, 0.04);
}
.ll-tree-node-selected > .ll-tree-node-content {
background-color: rgba(63, 81, 181, 0.1);
color: var(--ll-primary);
}
.ll-tree-node-disabled > .ll-tree-node-content {
opacity: 0.5;
cursor: not-allowed;
}
.ll-tree-toggle {
display: inline-flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
margin-right: 0.25rem;
cursor: pointer;
color: #666;
}
.ll-tree-toggle-hidden {
visibility: hidden;
}
.ll-tree-checkbox {
display: inline-flex;
align-items: center;
margin-right: 0.5rem;
cursor: pointer;
}
.ll-tree-checkbox input {
margin: 0;
cursor: pointer;
}
.ll-tree-icon {
display: inline-flex;
align-items: center;
margin-right: 0.5rem;
color: #666;
}
.ll-tree-label {
flex: 1;
}
.ll-tree-lines .ll-tree-node-content {
position: relative;
}
.ll-tree-lines .ll-tree-children {
position: relative;
margin-left: 12px;
padding-left: 12px;
border-left: 1px dashed #ddd;
}
/* ------------------------------------------------------------------------------
* Timeline
* ---------------------------------------------------------------------------- */
.ll-timeline {
position: relative;
padding: 0;
margin: 0;
}
.ll-timeline::before {
content: '';
position: absolute;
left: 15px;
top: 0;
bottom: 0;
width: 2px;
background-color: var(--ll-border);
}
.ll-timeline-right::before {
left: auto;
right: 15px;
}
.ll-timeline-center::before,
.ll-timeline-alternate::before {
left: 50%;
transform: translateX(-50%);
}
.ll-timeline-no-line::before {
display: none;
}
.ll-timeline-dashed::before {
background: repeating-linear-gradient(
to bottom,
var(--ll-border),
var(--ll-border) 4px,
transparent 4px,
transparent 8px
);
}
.ll-timeline-item {
position: relative;
padding: 0 0 1.5rem 40px;
}
.ll-timeline-right .ll-timeline-item {
padding: 0 40px 1.5rem 0;
}
.ll-timeline-center .ll-timeline-item,
.ll-timeline-alternate .ll-timeline-item {
width: 50%;
padding: 0 40px 1.5rem 0;
}
.ll-timeline-alternate .ll-timeline-item:nth-child(even),
.ll-timeline-item-right {
margin-left: 50%;
padding: 0 0 1.5rem 40px;
}
.ll-timeline-marker {
position: absolute;
left: 0;
top: 0;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
background-color: #fff;
border: 2px solid var(--ll-primary);
border-radius: 50%;
z-index: 1;
}
.ll-timeline-right .ll-timeline-marker {
left: auto;
right: 0;
}
.ll-timeline-center .ll-timeline-marker,
.ll-timeline-alternate .ll-timeline-marker {
left: auto;
right: -16px;
}
.ll-timeline-alternate .ll-timeline-item:nth-child(even) .ll-timeline-marker,
.ll-timeline-item-right .ll-timeline-marker {
left: -16px;
right: auto;
}
.ll-timeline-marker-primary { border-color: var(--ll-primary); color: var(--ll-primary); }
.ll-timeline-marker-secondary { border-color: var(--ll-secondary); color: var(--ll-secondary); }
.ll-timeline-marker-success { border-color: var(--ll-success); color: var(--ll-success); }
.ll-timeline-marker-danger { border-color: var(--ll-danger); color: var(--ll-danger); }
.ll-timeline-marker-warning { border-color: var(--ll-warning); color: var(--ll-warning); }
.ll-timeline-marker-info { border-color: var(--ll-info); color: var(--ll-info); }
.ll-timeline-marker-icon {
font-size: 0.75rem;
}
.ll-timeline-content {
background-color: #fff;
padding: 1rem;
border-radius: 0.25rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.ll-timeline-date {
font-size: 0.75rem;
color: #666;
margin-bottom: 0.25rem;
}
.ll-timeline-title {
font-weight: 600;
margin-bottom: 0.5rem;
}
.ll-timeline-text {
color: #666;
font-size: 0.875rem;
}
.ll-timeline-opposite {
position: absolute;
right: calc(50% + 40px);
top: 0;
text-align: right;
padding-right: 1rem;
}
.ll-timeline-alternate .ll-timeline-item:nth-child(even) .ll-timeline-opposite {
left: calc(50% + 40px);
right: auto;
text-align: left;
padding-left: 1rem;
padding-right: 0;
}
/* Horizontal Timeline */
.ll-timeline-horizontal {
position: relative;
display: flex;
flex-direction: column;
}
.ll-timeline-horizontal-line {
position: absolute;
top: 16px;
left: 0;
right: 0;
height: 2px;
background-color: var(--ll-border);
}
.ll-timeline-horizontal-items {
display: flex;
justify-content: space-between;
position: relative;
}
.ll-timeline-horizontal-item {
display: flex;
flex-direction: column;
align-items: center;
flex: 1;
}
.ll-timeline-horizontal-marker {
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
background-color: #fff;
border: 2px solid var(--ll-border);
border-radius: 50%;
z-index: 1;
transition: all 0.3s;
}
.ll-timeline-horizontal-item-active .ll-timeline-horizontal-marker {
border-color: var(--ll-primary);
background-color: var(--ll-primary);
color: #fff;
}
.ll-timeline-horizontal-item-current .ll-timeline-horizontal-marker {
transform: scale(1.2);
}
.ll-timeline-horizontal-content {
text-align: center;
margin-top: 0.5rem;
}
/* Timeline sizes */
.ll-timeline-sm .ll-timeline-marker,
.ll-timeline-sm .ll-timeline-horizontal-marker {
width: 24px;
height: 24px;
}
.ll-timeline-lg .ll-timeline-marker,
.ll-timeline-lg .ll-timeline-horizontal-marker {
width: 40px;
height: 40px;
}
/* ------------------------------------------------------------------------------
* FAB (Floating Action Button)
* ---------------------------------------------------------------------------- */
.ll-fab-container {
position: relative;
display: inline-flex;
flex-direction: column;
align-items: center;
}
.ll-fab-fixed {
position: fixed;
z-index: 1030;
}
.ll-fab-bottom-right { bottom: 1.5rem; right: 1.5rem; }
.ll-fab-bottom-left { bottom: 1.5rem; left: 1.5rem; }
.ll-fab-top-right { top: 1.5rem; right: 1.5rem; }
.ll-fab-top-left { top: 1.5rem; left: 1.5rem; }
.ll-fab-bottom-center { bottom: 1.5rem; left: 50%; transform: translateX(-50%); }
.ll-fab-top-center { top: 1.5rem; left: 50%; transform: translateX(-50%); }
.ll-fab {
width: 56px;
height: 56px;
border-radius: 50%;
border: none;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 3px 5px -1px rgba(0,0,0,.2), 0 6px 10px 0 rgba(0,0,0,.14), 0 1px 18px 0 rgba(0,0,0,.12);
transition: transform 0.2s, box-shadow 0.2s;
position: relative;
overflow: hidden;
}
.ll-fab:hover {
transform: scale(1.05);
box-shadow: 0 5px 5px -3px rgba(0,0,0,.2), 0 8px 10px 1px rgba(0,0,0,.14), 0 3px 14px 2px rgba(0,0,0,.12);
}
.ll-fab:active {
transform: scale(0.98);
}
.ll-fab-primary { background-color: var(--ll-primary); color: #fff; }
.ll-fab-secondary { background-color: var(--ll-secondary); color: #fff; }
.ll-fab-success { background-color: var(--ll-success); color: #fff; }
.ll-fab-danger { background-color: var(--ll-danger); color: #fff; }
.ll-fab-warning { background-color: var(--ll-warning); color: #333; }
.ll-fab-info { background-color: var(--ll-info); color: #fff; }
.ll-fab-light { background-color: var(--ll-light); color: #333; }
.ll-fab-dark { background-color: var(--ll-dark); color: #fff; }
.ll-fab-sm { width: 40px; height: 40px; }
.ll-fab-lg { width: 72px; height: 72px; }
.ll-fab-mini { width: 40px; height: 40px; }
.ll-fab-extended {
width: auto;
border-radius: 28px;
padding: 0 1.5rem;
gap: 0.5rem;
}
.ll-fab-icon {
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s, opacity 0.3s;
}
.ll-fab-icon-hidden {
position: absolute;
opacity: 0;
transform: rotate(-90deg);
}
.ll-fab-active .ll-fab-icon:not(.ll-fab-icon-hidden) {
transform: rotate(45deg);
}
.ll-fab-active .ll-fab-icon-expanded {
opacity: 1;
transform: rotate(0);
}
.ll-fab-disabled {
opacity: 0.5;
cursor: not-allowed;
pointer-events: none;
}
.ll-fab-actions {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.75rem;
margin-bottom: 0.75rem;
}
.ll-fab-direction-down .ll-fab-actions {
flex-direction: column-reverse;
margin-bottom: 0;
margin-top: 0.75rem;
}
.ll-fab-direction-left .ll-fab-actions,
.ll-fab-direction-right .ll-fab-actions {
flex-direction: row;
margin-bottom: 0;
}
.ll-fab-direction-left .ll-fab-actions {
margin-right: 0.75rem;
}
.ll-fab-direction-right .ll-fab-actions {
margin-left: 0.75rem;
}
.ll-fab-action {
display: flex;
align-items: center;
gap: 0.5rem;
transition: opacity 0.2s, transform 0.2s;
}
.ll-fab-action-label {
padding: 0.25rem 0.75rem;
background-color: #333;
color: #fff;
font-size: 0.75rem;
border-radius: 0.25rem;
white-space: nowrap;
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.ll-fab-action-btn {
width: 40px;
height: 40px;
border-radius: 50%;
border: none;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
background-color: #fff;
color: #333;
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
transition: transform 0.2s;
}
.ll-fab-action-btn:hover {
transform: scale(1.1);
}
.ll-fab-action-secondary .ll-fab-action-btn { background-color: var(--ll-secondary); color: #fff; }
.ll-fab-action-success .ll-fab-action-btn { background-color: var(--ll-success); color: #fff; }
.ll-fab-action-danger .ll-fab-action-btn { background-color: var(--ll-danger); color: #fff; }
.ll-fab-backdrop {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.3);
z-index: -1;
}
/* ------------------------------------------------------------------------------
* Context Menu
* ---------------------------------------------------------------------------- */
.ll-context-menu-container {
display: contents;
}
.ll-context-menu {
min-width: 160px;
background-color: #fff;
border: 1px solid var(--ll-border);
border-radius: 0.25rem;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
padding: 0.25rem 0;
z-index: 9999;
}
.ll-context-menu-item {
display: flex;
align-items: center;
padding: 0.5rem 1rem;
cursor: pointer;
transition: background-color 0.15s;
position: relative;
}
.ll-context-menu-item:hover {
background-color: #f5f5f5;
}
.ll-context-menu-item-disabled {
opacity: 0.5;
cursor: not-allowed;
}
.ll-context-menu-item-danger {
color: var(--ll-danger);
}
.ll-context-menu-item-danger:hover {
background-color: rgba(244, 67, 54, 0.1);
}
.ll-context-menu-icon {
margin-right: 0.75rem;
width: 16px;
display: flex;
align-items: center;
justify-content: center;
}
.ll-context-menu-label {
flex: 1;
}
.ll-context-menu-shortcut {
margin-left: 2rem;
font-size: 0.75rem;
color: #999;
}
.ll-context-menu-arrow {
margin-left: 0.5rem;
color: #666;
}
.ll-context-menu-divider {
height: 1px;
background-color: var(--ll-border);
margin: 0.25rem 0;
}
.ll-context-menu-submenu {
position: absolute;
top: 0;
left: 100%;
min-width: 160px;
background-color: #fff;
border: 1px solid var(--ll-border);
border-radius: 0.25rem;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
padding: 0.25rem 0;
}
/* ------------------------------------------------------------------------------
* Notification
* ---------------------------------------------------------------------------- */
.ll-notification-container {
position: fixed;
z-index: 9999;
display: flex;
flex-direction: column;
gap: 0.75rem;
padding: 1rem;
pointer-events: none;
}
.ll-notification-container > * {
pointer-events: auto;
}
.ll-notification-container-top-right { top: 0; right: 0; }
.ll-notification-container-top-left { top: 0; left: 0; }
.ll-notification-container-top-center { top: 0; left: 50%; transform: translateX(-50%); }
.ll-notification-container-bottom-right { bottom: 0; right: 0; }
.ll-notification-container-bottom-left { bottom: 0; left: 0; }
.ll-notification-container-bottom-center { bottom: 0; left: 50%; transform: translateX(-50%); }
.ll-notification {
display: flex;
align-items: flex-start;
min-width: 300px;
max-width: 400px;
padding: 1rem;
background-color: #fff;
border-radius: 0.5rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
animation: ll-notification-enter 0.3s ease-out;
position: relative;
overflow: hidden;
}
.ll-notification-exit {
animation: ll-notification-exit 0.3s ease-in forwards;
}
@keyframes ll-notification-enter {
from {
opacity: 0;
transform: translateX(100%);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes ll-notification-exit {
from {
opacity: 1;
transform: translateX(0);
}
to {
opacity: 0;
transform: translateX(100%);
}
}
.ll-notification-icon {
flex-shrink: 0;
margin-right: 0.75rem;
width: 24px;
height: 24px;
}
.ll-notification-success .ll-notification-icon { color: var(--ll-success); }
.ll-notification-error .ll-notification-icon { color: var(--ll-danger); }
.ll-notification-warning .ll-notification-icon { color: var(--ll-warning); }
.ll-notification-info .ll-notification-icon { color: var(--ll-info); }
.ll-notification-content {
flex: 1;
min-width: 0;
}
.ll-notification-title {
font-weight: 600;
margin-bottom: 0.25rem;
}
.ll-notification-message {
color: #666;
font-size: 0.875rem;
}
.ll-notification-actions {
margin-top: 0.75rem;
display: flex;
gap: 0.5rem;
}
.ll-notification-close {
position: absolute;
top: 0.5rem;
right: 0.5rem;
background: none;
border: none;
font-size: 1.25rem;
color: #999;
cursor: pointer;
padding: 0.25rem;
line-height: 1;
}
.ll-notification-close:hover {
color: #333;
}
.ll-notification-progress {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 3px;
background-color: rgba(0,0,0,0.1);
}
.ll-notification-progress-bar {
height: 100%;
background-color: var(--ll-primary);
transition: width 0.1s linear;
}
.ll-notification-success .ll-notification-progress-bar { background-color: var(--ll-success); }
.ll-notification-error .ll-notification-progress-bar { background-color: var(--ll-danger); }
.ll-notification-warning .ll-notification-progress-bar { background-color: var(--ll-warning); }
.ll-notification-info .ll-notification-progress-bar { background-color: var(--ll-info); }
/* ------------------------------------------------------------------------------
* Rating
* ---------------------------------------------------------------------------- */
.ll-rating {
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.ll-rating-stars {
display: inline-flex;
gap: 0.125rem;
}
.ll-rating-star {
cursor: pointer;
transition: transform 0.15s;
font-size: 1.5rem;
line-height: 1;
}
.ll-rating-star:hover {
transform: scale(1.2);
}
.ll-rating-disabled .ll-rating-star,
.ll-rating-readonly .ll-rating-star {
cursor: default;
}
.ll-rating-disabled .ll-rating-star:hover,
.ll-rating-readonly .ll-rating-star:hover {
transform: none;
}
.ll-rating-value {
font-size: 0.875rem;
color: #666;
}
.ll-rating-sm .ll-rating-star { font-size: 1rem; }
.ll-rating-lg .ll-rating-star { font-size: 2rem; }
/* ------------------------------------------------------------------------------
* Stepper
* ---------------------------------------------------------------------------- */
.ll-stepper {
display: flex;
}
.ll-stepper-horizontal {
flex-direction: row;
align-items: flex-start;
}
.ll-stepper-vertical {
flex-direction: column;
}
.ll-step {
display: flex;
flex: 1;
position: relative;
}
.ll-stepper-horizontal .ll-step {
flex-direction: column;
align-items: center;
}
.ll-stepper-vertical .ll-step {
flex-direction: row;
padding-bottom: 1.5rem;
}
.ll-stepper-alternative .ll-step {
text-align: center;
}
.ll-step-indicator {
display: flex;
align-items: center;
justify-content: center;
}
.ll-step-icon {
width: 32px;
height: 32px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid var(--ll-border);
background-color: #fff;
font-weight: 600;
font-size: 0.875rem;
transition: all 0.3s;
}
.ll-step-icon-wait {
border-color: var(--ll-border);
color: #999;
}
.ll-step-icon-process {
border-color: var(--ll-primary);
background-color: var(--ll-primary);
color: #fff;
}
.ll-step-icon-finish {
border-color: var(--ll-success);
color: var(--ll-success);
}
.ll-step-icon-error {
border-color: var(--ll-danger);
color: var(--ll-danger);
}
.ll-step-content {
margin-top: 0.5rem;
}
.ll-stepper-vertical .ll-step-content {
margin-top: 0;
margin-left: 1rem;
}
.ll-step-title {
font-weight: 500;
}
.ll-step-process .ll-step-title {
color: var(--ll-primary);
}
.ll-step-description {
font-size: 0.75rem;
color: #999;
margin-top: 0.25rem;
}
.ll-step-connector {
flex: 1;
height: 2px;
background-color: var(--ll-border);
margin: 15px 0.5rem;
align-self: flex-start;
margin-top: 15px;
}
.ll-step-connector-completed {
background-color: var(--ll-primary);
}
.ll-stepper-vertical .ll-step-connector {
position: absolute;
left: 15px;
top: 32px;
bottom: 0;
width: 2px;
height: auto;
margin: 0;
}
.ll-stepper-connector-dashed .ll-step-connector {
background: repeating-linear-gradient(
to right,
var(--ll-border),
var(--ll-border) 4px,
transparent 4px,
transparent 8px
);
}
.ll-stepper-vertical .ll-stepper-connector-dashed .ll-step-connector {
background: repeating-linear-gradient(
to bottom,
var(--ll-border),
var(--ll-border) 4px,
transparent 4px,
transparent 8px
);
}
.ll-step-clickable {
cursor: pointer;
}
.ll-step-disabled {
opacity: 0.5;
cursor: not-allowed;
}
.ll-step-panel {
padding: 1rem 0 1rem 2.5rem;
display: none;
}
.ll-step-panel-active {
display: block;
}
.ll-stepper-nav {
display: flex;
justify-content: space-between;
gap: 0.5rem;
margin-top: 1rem;
}
.ll-stepper-nav-btn {
padding: 0.5rem 1rem;
border: 1px solid var(--ll-border);
border-radius: 0.25rem;
background-color: #fff;
cursor: pointer;
transition: all 0.15s;
}
.ll-stepper-nav-btn:hover:not(:disabled) {
background-color: #f5f5f5;
}
.ll-stepper-nav-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.ll-stepper-nav-next,
.ll-stepper-nav-finish {
background-color: var(--ll-primary);
border-color: var(--ll-primary);
color: #fff;
}
.ll-stepper-nav-next:hover:not(:disabled),
.ll-stepper-nav-finish:hover:not(:disabled) {
background-color: #303f9f;
}
/* Stepper sizes */
.ll-stepper-sm .ll-step-icon { width: 24px; height: 24px; font-size: 0.75rem; }
.ll-stepper-lg .ll-step-icon { width: 40px; height: 40px; font-size: 1rem; }
/* ------------------------------------------------------------------------------
* Image Cropper
* ---------------------------------------------------------------------------- */
.ll-image-cropper {
display: flex;
flex-direction: column;
gap: 1rem;
}
.ll-image-cropper-container {
position: relative;
overflow: hidden;
background-color: #1a1a1a;
transition: transform 0.3s;
}
.ll-image-cropper-image {
display: block;
max-width: 100%;
height: auto;
}
.ll-image-cropper-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
}
.ll-image-cropper-dark {
position: absolute;
background-color: rgba(0, 0, 0, 0.5);
}
.ll-image-cropper-dark-top {
top: 0;
left: 0;
right: 0;
}
.ll-image-cropper-dark-left {
left: 0;
}
.ll-image-cropper-dark-right {
right: 0;
}
.ll-image-cropper-dark-bottom {
left: 0;
right: 0;
bottom: 0;
}
.ll-image-cropper-crop-box {
position: absolute;
border: 2px dashed #fff;
cursor: move;
pointer-events: auto;
box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
}
.ll-image-cropper-crop-circle {
border-radius: 50%;
}
.ll-image-cropper-grid {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
}
.ll-image-cropper-grid-line {
position: absolute;
background-color: rgba(255, 255, 255, 0.3);
}
.ll-image-cropper-grid-h1,
.ll-image-cropper-grid-h2 {
left: 0;
right: 0;
height: 1px;
}
.ll-image-cropper-grid-h1 { top: 33.33%; }
.ll-image-cropper-grid-h2 { top: 66.66%; }
.ll-image-cropper-grid-v1,
.ll-image-cropper-grid-v2 {
top: 0;
bottom: 0;
width: 1px;
}
.ll-image-cropper-grid-v1 { left: 33.33%; }
.ll-image-cropper-grid-v2 { left: 66.66%; }
.ll-image-cropper-handle {
position: absolute;
width: 10px;
height: 10px;
background-color: #fff;
border: 1px solid var(--ll-primary);
}
.ll-image-cropper-handle-nw { top: -5px; left: -5px; cursor: nw-resize; }
.ll-image-cropper-handle-n { top: -5px; left: 50%; transform: translateX(-50%); cursor: n-resize; }
.ll-image-cropper-handle-ne { top: -5px; right: -5px; cursor: ne-resize; }
.ll-image-cropper-handle-e { top: 50%; right: -5px; transform: translateY(-50%); cursor: e-resize; }
.ll-image-cropper-handle-se { bottom: -5px; right: -5px; cursor: se-resize; }
.ll-image-cropper-handle-s { bottom: -5px; left: 50%; transform: translateX(-50%); cursor: s-resize; }
.ll-image-cropper-handle-sw { bottom: -5px; left: -5px; cursor: sw-resize; }
.ll-image-cropper-handle-w { top: 50%; left: -5px; transform: translateY(-50%); cursor: w-resize; }
.ll-image-cropper-controls {
display: flex;
align-items: center;
gap: 1rem;
flex-wrap: wrap;
}
.ll-image-cropper-zoom,
.ll-image-cropper-rotate {
display: flex;
align-items: center;
gap: 0.5rem;
}
.ll-image-cropper-zoom-value {
min-width: 50px;
text-align: center;
font-size: 0.875rem;
}
.ll-image-cropper-btn {
padding: 0.375rem 0.75rem;
border: 1px solid var(--ll-border);
border-radius: 0.25rem;
background-color: #fff;
cursor: pointer;
transition: background-color 0.15s;
}
.ll-image-cropper-btn:hover:not(:disabled) {
background-color: #f5f5f5;
}
.ll-image-cropper-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.ll-image-cropper-btn-primary {
background-color: var(--ll-primary);
border-color: var(--ll-primary);
color: #fff;
}
.ll-image-cropper-btn-primary:hover:not(:disabled) {
background-color: #303f9f;
}
.ll-image-cropper-preview {
border: 1px solid var(--ll-border);
overflow: hidden;
}
.ll-image-cropper-preview-circle {
border-radius: 50%;
}
.ll-image-cropper-preview img {
display: block;
max-width: none;
}
/* ============================================
LOW PRIORITY COMPONENTS
============================================ */
/* Calendar
-------------------------------------------- */
.ll-calendar {
background-color: #fff;
border: 1px solid var(--ll-border);
border-radius: 0.5rem;
overflow: hidden;
}
.ll-calendar-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem;
border-bottom: 1px solid var(--ll-border);
}
.ll-calendar-header-left,
.ll-calendar-header-right {
display: flex;
align-items: center;
gap: 0.5rem;
}
.ll-calendar-header-center {
flex: 1;
text-align: center;
}
.ll-calendar-title {
margin: 0;
font-size: 1.125rem;
font-weight: 600;
}
.ll-calendar-btn {
padding: 0.375rem 0.75rem;
border: 1px solid var(--ll-border);
border-radius: 0.25rem;
background-color: #fff;
cursor: pointer;
font-size: 0.875rem;
transition: all 0.15s;
}
.ll-calendar-btn:hover {
background-color: #f5f5f5;
}
.ll-calendar-btn-active {
background-color: var(--ll-primary);
border-color: var(--ll-primary);
color: #fff;
}
.ll-calendar-nav {
font-size: 1.25rem;
padding: 0.25rem 0.5rem;
}
.ll-calendar-view-buttons {
display: flex;
gap: 0.25rem;
}
.ll-calendar-body {
padding: 0.5rem;
}
.ll-calendar-month {
width: 100%;
}
.ll-calendar-weekdays {
display: grid;
grid-template-columns: repeat(7, 1fr);
text-align: center;
font-weight: 600;
font-size: 0.75rem;
color: var(--ll-text-muted);
padding: 0.5rem 0;
border-bottom: 1px solid var(--ll-border);
}
.ll-calendar-weekdays.ll-calendar-week-numbers {
grid-template-columns: 2rem repeat(7, 1fr);
}
.ll-calendar-days {
display: grid;
grid-template-columns: repeat(7, 1fr);
}
.ll-calendar-day {
min-height: 80px;
padding: 0.25rem;
border: 1px solid transparent;
border-bottom: 1px solid var(--ll-border);
cursor: pointer;
transition: background-color 0.15s;
}
.ll-calendar-day:hover {
background-color: #f8f9fa;
}
.ll-calendar-day-other {
color: var(--ll-text-muted);
background-color: #fafafa;
}
.ll-calendar-day-today {
background-color: rgba(63, 81, 181, 0.05);
}
.ll-calendar-day-today .ll-calendar-day-number {
background-color: var(--ll-primary);
color: #fff;
border-radius: 50%;
width: 1.5rem;
height: 1.5rem;
display: flex;
align-items: center;
justify-content: center;
}
.ll-calendar-day-selected {
background-color: rgba(63, 81, 181, 0.1);
}
.ll-calendar-day-number {
font-size: 0.875rem;
font-weight: 500;
margin-bottom: 0.25rem;
}
.ll-calendar-day-events {
display: flex;
flex-direction: column;
gap: 0.125rem;
}
.ll-calendar-event {
padding: 0.125rem 0.25rem;
border-radius: 0.125rem;
font-size: 0.75rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
cursor: pointer;
}
.ll-calendar-more-events {
font-size: 0.75rem;
color: var(--ll-text-muted);
padding: 0.125rem 0.25rem;
}
/* Calendar Week View */
.ll-calendar-week {
display: flex;
flex-direction: column;
}
.ll-calendar-week-header {
display: flex;
border-bottom: 1px solid var(--ll-border);
}
.ll-calendar-time-gutter {
width: 60px;
flex-shrink: 0;
}
.ll-calendar-week-day-header {
flex: 1;
text-align: center;
padding: 0.5rem;
border-left: 1px solid var(--ll-border);
}
.ll-calendar-week-day-name {
font-size: 0.75rem;
color: var(--ll-text-muted);
display: block;
}
.ll-calendar-week-day-number {
font-size: 1.25rem;
font-weight: 600;
}
.ll-calendar-week-body {
display: flex;
position: relative;
height: 600px;
overflow-y: auto;
}
.ll-calendar-time-slots {
width: 60px;
flex-shrink: 0;
}
.ll-calendar-time-slot {
height: 60px;
border-bottom: 1px solid var(--ll-border);
padding: 0.25rem;
}
.ll-calendar-time-label {
font-size: 0.75rem;
color: var(--ll-text-muted);
}
.ll-calendar-week-grid {
display: flex;
flex: 1;
}
.ll-calendar-week-column {
flex: 1;
border-left: 1px solid var(--ll-border);
position: relative;
}
.ll-calendar-week-cell {
height: 60px;
border-bottom: 1px solid var(--ll-border);
}
.ll-calendar-week-event {
position: absolute;
left: 2px;
right: 2px;
padding: 0.25rem;
border-radius: 0.25rem;
font-size: 0.75rem;
overflow: hidden;
cursor: pointer;
}
/* Calendar Day View */
.ll-calendar-day-view {
position: relative;
}
.ll-calendar-time-column {
max-height: 600px;
overflow-y: auto;
}
.ll-calendar-time-row {
display: flex;
height: 60px;
border-bottom: 1px solid var(--ll-border);
}
.ll-calendar-time-cell {
flex: 1;
cursor: pointer;
}
.ll-calendar-time-cell:hover {
background-color: #f8f9fa;
}
.ll-calendar-day-events-overlay {
position: absolute;
top: 0;
left: 60px;
right: 0;
bottom: 0;
pointer-events: none;
}
.ll-calendar-day-event {
position: absolute;
left: 4px;
right: 4px;
padding: 0.5rem;
border-radius: 0.25rem;
pointer-events: auto;
cursor: pointer;
}
/* Calendar List View */
.ll-calendar-list {
max-height: 500px;
overflow-y: auto;
}
.ll-calendar-list-day {
border-bottom: 1px solid var(--ll-border);
}
.ll-calendar-list-date {
padding: 0.75rem 1rem;
font-weight: 600;
background-color: #f8f9fa;
position: sticky;
top: 0;
}
.ll-calendar-list-events {
padding: 0.5rem 1rem;
}
.ll-calendar-list-event {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.5rem 0;
cursor: pointer;
}
.ll-calendar-list-event:hover {
background-color: #f8f9fa;
}
.ll-calendar-list-event-dot {
width: 0.5rem;
height: 0.5rem;
border-radius: 50%;
flex-shrink: 0;
}
.ll-calendar-list-event-time {
width: 5rem;
font-size: 0.875rem;
color: var(--ll-text-muted);
}
.ll-calendar-list-event-title {
flex: 1;
}
.ll-calendar-list-empty {
padding: 2rem;
text-align: center;
color: var(--ll-text-muted);
}
/* Mini Calendar */
.ll-mini-calendar {
background-color: #fff;
border: 1px solid var(--ll-border);
border-radius: 0.5rem;
padding: 1rem;
width: 280px;
}
.ll-mini-calendar-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 1rem;
}
.ll-mini-calendar-title {
font-weight: 600;
}
.ll-mini-calendar-nav {
background: none;
border: none;
cursor: pointer;
font-size: 1.25rem;
padding: 0.25rem 0.5rem;
border-radius: 0.25rem;
}
.ll-mini-calendar-nav:hover {
background-color: #f5f5f5;
}
.ll-mini-calendar-weekdays {
display: grid;
grid-template-columns: repeat(7, 1fr);
text-align: center;
font-size: 0.75rem;
font-weight: 600;
color: var(--ll-text-muted);
margin-bottom: 0.5rem;
}
.ll-mini-calendar-days {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 0.125rem;
}
.ll-mini-calendar-day {
aspect-ratio: 1;
display: flex;
align-items: center;
justify-content: center;
border: none;
background: none;
border-radius: 50%;
cursor: pointer;
font-size: 0.875rem;
transition: all 0.15s;
}
.ll-mini-calendar-day:hover:not(:disabled) {
background-color: #f5f5f5;
}
.ll-mini-calendar-day-other {
color: var(--ll-text-muted);
}
.ll-mini-calendar-day-today {
font-weight: 700;
color: var(--ll-primary);
}
.ll-mini-calendar-day-selected {
background-color: var(--ll-primary);
color: #fff;
}
.ll-mini-calendar-day-selected:hover:not(:disabled) {
background-color: var(--ll-primary);
}
.ll-mini-calendar-day-disabled {
opacity: 0.5;
cursor: not-allowed;
}
.ll-mini-calendar-footer {
margin-top: 1rem;
text-align: center;
}
.ll-mini-calendar-today {
background: none;
border: none;
color: var(--ll-primary);
cursor: pointer;
font-weight: 500;
}
.ll-mini-calendar-today:hover {
text-decoration: underline;
}
/* Gallery
-------------------------------------------- */
.ll-gallery {
display: grid;
gap: var(--ll-gallery-gap, 16px);
grid-template-columns: repeat(var(--ll-gallery-columns, 4), 1fr);
}
@media (max-width: 1200px) {
.ll-gallery {
grid-template-columns: repeat(var(--ll-gallery-columns-lg, 4), 1fr);
}
}
@media (max-width: 992px) {
.ll-gallery {
grid-template-columns: repeat(var(--ll-gallery-columns-md, 3), 1fr);
}
}
@media (max-width: 768px) {
.ll-gallery {
grid-template-columns: repeat(var(--ll-gallery-columns-sm, 2), 1fr);
}
}
.ll-gallery-masonry {
display: block;
column-count: var(--ll-gallery-columns, 4);
column-gap: var(--ll-gallery-gap, 16px);
}
.ll-gallery-masonry .ll-gallery-item {
break-inside: avoid;
margin-bottom: var(--ll-gallery-gap, 16px);
}
.ll-gallery-item {
position: relative;
overflow: hidden;
cursor: pointer;
border-radius: 0.5rem;
}
.ll-gallery-item-inner {
position: relative;
overflow: hidden;
}
.ll-gallery-ratio-1-1 .ll-gallery-item-inner {
aspect-ratio: 1;
}
.ll-gallery-ratio-4-3 .ll-gallery-item-inner {
aspect-ratio: 4/3;
}
.ll-gallery-ratio-16-9 .ll-gallery-item-inner {
aspect-ratio: 16/9;
}
.ll-gallery-ratio-3-2 .ll-gallery-item-inner {
aspect-ratio: 3/2;
}
.ll-gallery-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.ll-gallery-hover-zoom .ll-gallery-item:hover .ll-gallery-image {
transform: scale(1.1);
}
.ll-gallery-hover-fade .ll-gallery-item:hover .ll-gallery-image {
opacity: 0.8;
}
.ll-gallery-overlay {
position: absolute;
inset: 0;
background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.7));
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 1rem;
opacity: 0;
transition: opacity 0.3s ease;
}
.ll-gallery-hover-overlay .ll-gallery-item:hover .ll-gallery-overlay {
opacity: 1;
}
.ll-gallery-overlay-title {
color: #fff;
font-weight: 600;
}
.ll-gallery-overlay-desc {
color: rgba(255, 255, 255, 0.8);
font-size: 0.875rem;
}
.ll-gallery-caption {
padding: 0.75rem 0;
}
.ll-gallery-title {
font-weight: 600;
}
.ll-gallery-description {
color: var(--ll-text-muted);
font-size: 0.875rem;
}
/* Lightbox */
.ll-lightbox {
position: fixed;
inset: 0;
z-index: 9999;
display: flex;
flex-direction: column;
}
.ll-lightbox-backdrop {
position: absolute;
inset: 0;
background-color: rgba(0, 0, 0, 0.95);
}
.ll-lightbox-header {
position: relative;
z-index: 1;
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem;
color: #fff;
}
.ll-lightbox-counter {
font-size: 0.875rem;
opacity: 0.8;
}
.ll-lightbox-title {
flex: 1;
text-align: center;
font-weight: 500;
}
.ll-lightbox-actions {
display: flex;
align-items: center;
gap: 0.5rem;
}
.ll-lightbox-btn {
background: none;
border: none;
color: #fff;
cursor: pointer;
padding: 0.5rem;
border-radius: 0.25rem;
display: flex;
align-items: center;
gap: 0.25rem;
font-size: 0.875rem;
opacity: 0.8;
transition: opacity 0.15s;
}
.ll-lightbox-btn:hover {
opacity: 1;
}
.ll-lightbox-btn-active {
background-color: rgba(255, 255, 255, 0.2);
}
.ll-lightbox-close {
margin-left: 1rem;
}
.ll-lightbox-content {
position: relative;
flex: 1;
display: flex;
align-items: center;
justify-content: center;
padding: 0 4rem;
}
.ll-lightbox-image-container {
max-width: 100%;
max-height: 100%;
}
.ll-lightbox-image {
max-width: 100%;
max-height: calc(100vh - 200px);
object-fit: contain;
transition: transform 0.3s ease;
}
.ll-lightbox-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: none;
border: none;
color: #fff;
cursor: pointer;
padding: 1rem;
opacity: 0.7;
transition: opacity 0.15s;
}
.ll-lightbox-nav:hover {
opacity: 1;
}
.ll-lightbox-prev {
left: 0;
}
.ll-lightbox-next {
right: 0;
}
.ll-lightbox-footer {
position: relative;
z-index: 1;
padding: 1rem;
text-align: center;
}
.ll-lightbox-description {
color: rgba(255, 255, 255, 0.8);
margin: 0;
}
.ll-lightbox-thumbnails {
position: relative;
z-index: 1;
display: flex;
justify-content: center;
gap: 0.5rem;
padding: 1rem;
overflow-x: auto;
}
.ll-lightbox-thumbnail {
width: 60px;
height: 60px;
padding: 0;
border: 2px solid transparent;
border-radius: 0.25rem;
cursor: pointer;
overflow: hidden;
opacity: 0.6;
transition: all 0.15s;
}
.ll-lightbox-thumbnail:hover {
opacity: 0.9;
}
.ll-lightbox-thumbnail-active {
border-color: #fff;
opacity: 1;
}
.ll-lightbox-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* Embed
-------------------------------------------- */
.ll-embed {
position: relative;
width: 100%;
overflow: hidden;
background-color: #000;
}
.ll-embed-iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
.ll-embed-loader {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
background-color: #1a1a1a;
}
.ll-embed-spinner {
width: 48px;
height: 48px;
}
.ll-embed-spinner-ring {
width: 100%;
height: 100%;
border: 3px solid rgba(255, 255, 255, 0.2);
border-top-color: #fff;
border-radius: 50%;
animation: ll-embed-spin 1s linear infinite;
}
@keyframes ll-embed-spin {
to {
transform: rotate(360deg);
}
}
.ll-embed-error-message {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #fff;
text-align: center;
}
.ll-embed-error-message svg {
margin-bottom: 1rem;
opacity: 0.5;
}
.ll-video-custom {
background-color: #000;
}
.ll-video-element {
width: 100%;
height: auto;
}
.ll-social-embed {
border: 1px solid var(--ll-border);
border-radius: 0.5rem;
padding: 2rem;
text-align: center;
}
.ll-social-embed-icon {
font-size: 2rem;
margin-bottom: 1rem;
}
.ll-social-embed-link {
display: inline-block;
color: var(--ll-primary);
font-weight: 500;
margin-bottom: 0.5rem;
}
.ll-social-embed-note {
font-size: 0.75rem;
color: var(--ll-text-muted);
margin: 0;
}
/* Syntax Highlighter
-------------------------------------------- */
.ll-syntax-highlighter {
background-color: #1e1e1e;
border-radius: 0.5rem;
overflow: hidden;
font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
font-size: 0.875rem;
}
.ll-syntax-theme-light {
background-color: #f8f9fa;
}
.ll-syntax-theme-github {
background-color: #f6f8fa;
}
.ll-syntax-theme-monokai {
background-color: #272822;
}
.ll-syntax-theme-dracula {
background-color: #282a36;
}
.ll-syntax-theme-nord {
background-color: #2e3440;
}
.ll-syntax-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.5rem 1rem;
background-color: rgba(255, 255, 255, 0.05);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ll-syntax-theme-light .ll-syntax-header,
.ll-syntax-theme-github .ll-syntax-header {
background-color: rgba(0, 0, 0, 0.03);
border-color: rgba(0, 0, 0, 0.1);
}
.ll-syntax-language {
font-size: 0.75rem;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.5);
font-weight: 500;
}
.ll-syntax-theme-light .ll-syntax-language,
.ll-syntax-theme-github .ll-syntax-language {
color: rgba(0, 0, 0, 0.5);
}
.ll-syntax-copy {
display: flex;
align-items: center;
gap: 0.25rem;
padding: 0.25rem 0.5rem;
background: none;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 0.25rem;
color: rgba(255, 255, 255, 0.7);
cursor: pointer;
font-size: 0.75rem;
transition: all 0.15s;
}
.ll-syntax-copy:hover {
background-color: rgba(255, 255, 255, 0.1);
color: #fff;
}
.ll-syntax-copied {
color: #4caf50;
border-color: #4caf50;
}
.ll-syntax-theme-light .ll-syntax-copy,
.ll-syntax-theme-github .ll-syntax-copy {
color: rgba(0, 0, 0, 0.6);
border-color: rgba(0, 0, 0, 0.2);
}
.ll-syntax-code {
overflow-x: auto;
}
.ll-syntax-code pre {
margin: 0;
padding: 1rem;
}
.ll-syntax-code code {
display: block;
}
.ll-syntax-line {
display: flex;
line-height: 1.5;
}
.ll-syntax-line-highlighted {
background-color: rgba(255, 255, 0, 0.1);
}
.ll-syntax-line-number {
width: 3rem;
padding-right: 1rem;
text-align: right;
color: rgba(255, 255, 255, 0.3);
user-select: none;
flex-shrink: 0;
}
.ll-syntax-theme-light .ll-syntax-line-number,
.ll-syntax-theme-github .ll-syntax-line-number {
color: rgba(0, 0, 0, 0.3);
}
.ll-syntax-line-content {
flex: 1;
white-space: pre;
}
.ll-syntax-wrap .ll-syntax-line-content {
white-space: pre-wrap;
word-break: break-word;
}
/* Syntax token colors - Dark theme */
.ll-syntax-highlighter .ll-syntax-keyword { color: #c586c0; }
.ll-syntax-highlighter .ll-syntax-string { color: #ce9178; }
.ll-syntax-highlighter .ll-syntax-number { color: #b5cea8; }
.ll-syntax-highlighter .ll-syntax-comment { color: #6a9955; }
.ll-syntax-highlighter .ll-syntax-function { color: #dcdcaa; }
.ll-syntax-highlighter .ll-syntax-operator { color: #d4d4d4; }
.ll-syntax-highlighter .ll-syntax-punctuation { color: #d4d4d4; }
.ll-syntax-highlighter .ll-syntax-variable { color: #9cdcfe; }
.ll-syntax-highlighter .ll-syntax-tag { color: #569cd6; }
.ll-syntax-highlighter .ll-syntax-attribute { color: #9cdcfe; }
.ll-syntax-highlighter .ll-syntax-property { color: #9cdcfe; }
.ll-syntax-highlighter .ll-syntax-selector { color: #d7ba7d; }
.ll-syntax-highlighter .ll-syntax-class { color: #4ec9b0; }
.ll-syntax-highlighter .ll-syntax-builtin { color: #4fc1ff; }
.ll-syntax-highlighter .ll-syntax-plain { color: #d4d4d4; }
/* Syntax token colors - Light theme */
.ll-syntax-theme-light .ll-syntax-keyword,
.ll-syntax-theme-github .ll-syntax-keyword { color: #d73a49; }
.ll-syntax-theme-light .ll-syntax-string,
.ll-syntax-theme-github .ll-syntax-string { color: #032f62; }
.ll-syntax-theme-light .ll-syntax-number,
.ll-syntax-theme-github .ll-syntax-number { color: #005cc5; }
.ll-syntax-theme-light .ll-syntax-comment,
.ll-syntax-theme-github .ll-syntax-comment { color: #6a737d; }
.ll-syntax-theme-light .ll-syntax-function,
.ll-syntax-theme-github .ll-syntax-function { color: #6f42c1; }
.ll-syntax-theme-light .ll-syntax-operator,
.ll-syntax-theme-github .ll-syntax-operator { color: #24292e; }
.ll-syntax-theme-light .ll-syntax-tag,
.ll-syntax-theme-github .ll-syntax-tag { color: #22863a; }
.ll-syntax-theme-light .ll-syntax-class,
.ll-syntax-theme-github .ll-syntax-class { color: #6f42c1; }
.ll-syntax-theme-light .ll-syntax-plain,
.ll-syntax-theme-github .ll-syntax-plain { color: #24292e; }
/* Code Block */
.ll-code-block {
border-radius: 0.5rem;
overflow: hidden;
}
.ll-code-block-title {
padding: 0.5rem 1rem;
background-color: #2d2d2d;
color: rgba(255, 255, 255, 0.8);
font-size: 0.875rem;
font-weight: 500;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ll-code-block .ll-syntax-highlighter {
border-radius: 0;
}
/* Inline Code */
.ll-inline-code {
padding: 0.125rem 0.375rem;
background-color: rgba(0, 0, 0, 0.05);
border-radius: 0.25rem;
font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
font-size: 0.875em;
color: #e83e8c;
}
/* Diff Viewer */
.ll-diff-viewer {
background-color: #1e1e1e;
border-radius: 0.5rem;
overflow: hidden;
font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
font-size: 0.875rem;
}
.ll-diff-viewer pre {
margin: 0;
padding: 1rem;
overflow-x: auto;
}
.ll-diff-line {
display: flex;
line-height: 1.5;
}
.ll-diff-line-add {
background-color: rgba(40, 167, 69, 0.2);
}
.ll-diff-line-remove {
background-color: rgba(220, 53, 69, 0.2);
}
.ll-diff-gutter {
width: 1.5rem;
text-align: center;
color: rgba(255, 255, 255, 0.5);
user-select: none;
}
.ll-diff-line-add .ll-diff-gutter { color: #28a745; }
.ll-diff-line-remove .ll-diff-gutter { color: #dc3545; }
.ll-diff-line-number {
width: 3rem;
padding: 0 0.5rem;
text-align: right;
color: rgba(255, 255, 255, 0.3);
user-select: none;
}
.ll-diff-content {
flex: 1;
white-space: pre;
color: #d4d4d4;
}
/* Widgets
-------------------------------------------- */
/* Stat Widget */
.ll-stat-widget {
background-color: #fff;
border-radius: 0.5rem;
border: 1px solid var(--ll-border);
overflow: hidden;
}
.ll-stat-widget-clickable {
cursor: pointer;
transition: box-shadow 0.15s;
}
.ll-stat-widget-clickable:hover {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.ll-stat-widget-body {
display: flex;
align-items: center;
gap: 1rem;
padding: 1.25rem;
}
.ll-stat-widget-icon-top .ll-stat-widget-body {
flex-direction: column;
text-align: center;
}
.ll-stat-widget-icon-right .ll-stat-widget-body {
flex-direction: row-reverse;
}
.ll-stat-widget-icon {
width: 3rem;
height: 3rem;
display: flex;
align-items: center;
justify-content: center;
border-radius: 0.5rem;
font-size: 1.5rem;
flex-shrink: 0;
}
.ll-stat-widget-primary .ll-stat-widget-icon {
background-color: rgba(63, 81, 181, 0.1);
color: var(--ll-primary);
}
.ll-stat-widget-success .ll-stat-widget-icon {
background-color: rgba(76, 175, 80, 0.1);
color: var(--ll-success);
}
.ll-stat-widget-danger .ll-stat-widget-icon {
background-color: rgba(244, 67, 54, 0.1);
color: var(--ll-danger);
}
.ll-stat-widget-warning .ll-stat-widget-icon {
background-color: rgba(255, 152, 0, 0.1);
color: var(--ll-warning);
}
.ll-stat-widget-info .ll-stat-widget-icon {
background-color: rgba(33, 150, 243, 0.1);
color: var(--ll-info);
}
.ll-stat-widget-content {
flex: 1;
min-width: 0;
}
.ll-stat-widget-value {
font-size: 1.75rem;
font-weight: 700;
line-height: 1.2;
}
.ll-stat-widget-sm .ll-stat-widget-value {
font-size: 1.25rem;
}
.ll-stat-widget-lg .ll-stat-widget-value {
font-size: 2.25rem;
}
.ll-stat-widget-label {
color: var(--ll-text-muted);
font-size: 0.875rem;
}
.ll-stat-widget-trend {
display: flex;
align-items: center;
gap: 0.25rem;
font-size: 0.875rem;
margin-top: 0.25rem;
}
.ll-stat-widget-trend-up {
color: var(--ll-success);
}
.ll-stat-widget-trend-down {
color: var(--ll-danger);
}
.ll-stat-widget-trend-neutral {
color: var(--ll-text-muted);
}
.ll-stat-widget-trend-label {
color: var(--ll-text-muted);
}
.ll-stat-widget-footer {
padding: 0.75rem 1.25rem;
border-top: 1px solid var(--ll-border);
background-color: #fafafa;
}
/* Progress Widget */
.ll-progress-widget-bar {
display: flex;
align-items: center;
gap: 0.5rem;
}
.ll-progress-widget-track {
flex: 1;
height: 0.5rem;
background-color: #e9ecef;
border-radius: 0.25rem;
overflow: hidden;
}
.ll-progress-widget-fill {
height: 100%;
background-color: var(--ll-primary);
border-radius: 0.25rem;
transition: width 0.3s ease;
}
.ll-progress-widget-label {
font-size: 0.75rem;
font-weight: 600;
color: var(--ll-text-muted);
}
/* Icon Widget */
.ll-icon-widget {
display: inline-flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem;
}
.ll-icon-widget-clickable {
cursor: pointer;
border-radius: 0.5rem;
transition: background-color 0.15s;
}
.ll-icon-widget-clickable:hover {
background-color: rgba(0, 0, 0, 0.05);
}
.ll-icon-widget-icon {
width: 2.5rem;
height: 2.5rem;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
flex-shrink: 0;
}
.ll-icon-widget-sm .ll-icon-widget-icon {
width: 2rem;
height: 2rem;
font-size: 1rem;
}
.ll-icon-widget-lg .ll-icon-widget-icon {
width: 3.5rem;
height: 3.5rem;
font-size: 1.75rem;
}
.ll-icon-widget-square .ll-icon-widget-icon {
border-radius: 0.25rem;
}
.ll-icon-widget-rounded .ll-icon-widget-icon {
border-radius: 0.5rem;
}
.ll-icon-widget-circle .ll-icon-widget-icon {
border-radius: 50%;
}
.ll-icon-widget-filled .ll-icon-widget-icon {
color: #fff;
}
.ll-icon-widget-filled.ll-icon-widget-primary .ll-icon-widget-icon {
background-color: var(--ll-primary);
}
.ll-icon-widget-filled.ll-icon-widget-success .ll-icon-widget-icon {
background-color: var(--ll-success);
}
.ll-icon-widget-filled.ll-icon-widget-danger .ll-icon-widget-icon {
background-color: var(--ll-danger);
}
.ll-icon-widget-filled.ll-icon-widget-warning .ll-icon-widget-icon {
background-color: var(--ll-warning);
}
.ll-icon-widget-filled.ll-icon-widget-info .ll-icon-widget-icon {
background-color: var(--ll-info);
}
.ll-icon-widget-label {
font-weight: 600;
}
.ll-icon-widget-description {
font-size: 0.875rem;
color: var(--ll-text-muted);
}
/* Content Widget */
.ll-content-widget {
background-color: #fff;
border-radius: 0.5rem;
border: 1px solid var(--ll-border);
}
.ll-content-widget-header {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 1rem 1.25rem;
border-bottom: 1px solid var(--ll-border);
}
.ll-content-widget-compact .ll-content-widget-header {
padding: 0.75rem 1rem;
}
.ll-content-widget-icon {
font-size: 1.25rem;
color: var(--ll-primary);
}
.ll-content-widget-title-group {
flex: 1;
min-width: 0;
}
.ll-content-widget-title {
margin: 0;
font-size: 1rem;
font-weight: 600;
}
.ll-content-widget-subtitle {
font-size: 0.875rem;
color: var(--ll-text-muted);
}
.ll-content-widget-actions {
display: flex;
align-items: center;
gap: 0.5rem;
}
.ll-content-widget-body {
padding: 1.25rem;
}
.ll-content-widget-compact .ll-content-widget-body {
padding: 1rem;
}
.ll-content-widget-no-padding .ll-content-widget-body {
padding: 0;
}
.ll-content-widget-loader {
display: flex;
align-items: center;
justify-content: center;
padding: 3rem;
}
.ll-content-widget-spinner {
width: 2rem;
height: 2rem;
border: 2px solid var(--ll-border);
border-top-color: var(--ll-primary);
border-radius: 50%;
animation: ll-widget-spin 0.8s linear infinite;
}
@keyframes ll-widget-spin {
to {
transform: rotate(360deg);
}
}
.ll-content-widget-footer {
padding: 0.75rem 1.25rem;
border-top: 1px solid var(--ll-border);
background-color: #fafafa;
}
/* List Widget */
.ll-list-widget-view-all {
background: none;
border: none;
color: var(--ll-primary);
cursor: pointer;
font-size: 0.875rem;
}
.ll-list-widget-view-all:hover {
text-decoration: underline;
}
.ll-list-widget-items {
list-style: none;
margin: 0;
padding: 0;
}
.ll-list-widget-dividers .ll-list-widget-item:not(:last-child) {
border-bottom: 1px solid var(--ll-border);
}
.ll-list-widget-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 1.25rem;
}
.ll-list-widget-item-hoverable {
cursor: pointer;
transition: background-color 0.15s;
}
.ll-list-widget-item-hoverable:hover {
background-color: #f8f9fa;
}
.ll-list-widget-avatar {
width: 2.5rem;
height: 2.5rem;
border-radius: 50%;
object-fit: cover;
}
.ll-list-widget-item-icon {
width: 2rem;
height: 2rem;
display: flex;
align-items: center;
justify-content: center;
background-color: #f0f0f0;
border-radius: 50%;
font-size: 0.875rem;
}
.ll-list-widget-item-content {
flex: 1;
min-width: 0;
}
.ll-list-widget-item-title {
font-weight: 500;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ll-list-widget-item-subtitle {
font-size: 0.875rem;
color: var(--ll-text-muted);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ll-list-widget-item-value {
font-weight: 600;
}
.ll-list-widget-empty {
padding: 2rem;
text-align: center;
color: var(--ll-text-muted);
}
/* Chart Widget */
.ll-chart-widget-content {
width: 100%;
}
.ll-chart-widget-legend {
display: flex;
flex-wrap: wrap;
gap: 1rem;
padding-top: 1rem;
justify-content: center;
}
/* Profile Widget */
.ll-profile-widget {
background-color: #fff;
border-radius: 0.5rem;
border: 1px solid var(--ll-border);
overflow: hidden;
}
.ll-profile-widget-cover {
height: 100px;
background-size: cover;
background-position: center;
background-color: var(--ll-primary);
}
.ll-profile-widget-body {
padding: 1.25rem;
text-align: center;
}
.ll-profile-widget-horizontal .ll-profile-widget-body {
display: flex;
align-items: center;
gap: 1rem;
text-align: left;
}
.ll-profile-widget-avatar-wrapper {
position: relative;
display: inline-block;
margin-top: -3rem;
}
.ll-profile-widget-horizontal .ll-profile-widget-avatar-wrapper {
margin-top: 0;
}
.ll-profile-widget-avatar {
width: 5rem;
height: 5rem;
border-radius: 50%;
border: 3px solid #fff;
object-fit: cover;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.ll-profile-widget-avatar-placeholder {
display: flex;
align-items: center;
justify-content: center;
background-color: var(--ll-primary);
color: #fff;
font-size: 1.5rem;
font-weight: 600;
}
.ll-profile-widget-status {
position: absolute;
bottom: 4px;
right: 4px;
width: 0.875rem;
height: 0.875rem;
border-radius: 50%;
border: 2px solid #fff;
}
.ll-profile-widget-status-online {
background-color: var(--ll-success);
}
.ll-profile-widget-status-offline {
background-color: #9e9e9e;
}
.ll-profile-widget-status-away {
background-color: var(--ll-warning);
}
.ll-profile-widget-status-busy {
background-color: var(--ll-danger);
}
.ll-profile-widget-info {
margin-top: 0.75rem;
}
.ll-profile-widget-horizontal .ll-profile-widget-info {
margin-top: 0;
flex: 1;
}
.ll-profile-widget-name {
margin: 0;
font-size: 1.125rem;
}
.ll-profile-widget-role {
margin: 0.25rem 0 0;
color: var(--ll-text-muted);
font-size: 0.875rem;
}
.ll-profile-widget-stats {
display: flex;
justify-content: center;
gap: 2rem;
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid var(--ll-border);
}
.ll-profile-widget-stat {
text-align: center;
}
.ll-profile-widget-stat-value {
display: block;
font-size: 1.25rem;
font-weight: 700;
}
.ll-profile-widget-stat-label {
font-size: 0.75rem;
color: var(--ll-text-muted);
text-transform: uppercase;
}
.ll-profile-widget-actions {
display: flex;
gap: 0.5rem;
margin-top: 1rem;
justify-content: center;
}
/* Weather Widget */
.ll-weather-widget {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 0.5rem;
padding: 1.5rem;
color: #fff;
}
.ll-weather-widget-current {
display: flex;
align-items: center;
gap: 1.5rem;
}
.ll-weather-widget-main {
text-align: center;
}
.ll-weather-widget-icon {
font-size: 3rem;
margin-bottom: 0.5rem;
}
.ll-weather-widget-temp {
font-size: 2.5rem;
font-weight: 300;
}
.ll-weather-widget-info {
flex: 1;
}
.ll-weather-widget-location {
font-size: 1.25rem;
font-weight: 600;
}
.ll-weather-widget-condition {
opacity: 0.9;
margin-bottom: 0.5rem;
}
.ll-weather-widget-details {
display: flex;
gap: 1rem;
font-size: 0.875rem;
opacity: 0.8;
}
.ll-weather-widget-forecast {
display: flex;
justify-content: space-between;
margin-top: 1.5rem;
padding-top: 1rem;
border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.ll-weather-widget-forecast-day {
text-align: center;
}
.ll-weather-widget-forecast-name {
font-size: 0.75rem;
opacity: 0.8;
margin-bottom: 0.25rem;
}
.ll-weather-widget-forecast-icon {
font-size: 1.25rem;
margin-bottom: 0.25rem;
}
.ll-weather-widget-forecast-temps {
font-size: 0.875rem;
}
.ll-weather-widget-forecast-high {
font-weight: 600;
}
.ll-weather-widget-forecast-low {
opacity: 0.7;
margin-left: 0.25rem;
}
/* Idle Timeout
-------------------------------------------- */
.ll-idle-timeout-modal {
position: fixed;
inset: 0;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
}
.ll-idle-timeout-backdrop {
position: absolute;
inset: 0;
background-color: rgba(0, 0, 0, 0.5);
}
.ll-idle-timeout-dialog {
position: relative;
background-color: #fff;
border-radius: 0.5rem;
padding: 2rem;
max-width: 400px;
width: 90%;
text-align: center;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.ll-idle-timeout-icon {
margin-bottom: 1rem;
color: var(--ll-warning);
}
.ll-idle-timeout-title {
margin: 0 0 0.5rem;
font-size: 1.25rem;
}
.ll-idle-timeout-message {
margin: 0 0 1.5rem;
color: var(--ll-text-muted);
}
.ll-idle-timeout-countdown {
margin-bottom: 1rem;
}
.ll-idle-timeout-time {
display: block;
font-size: 2.5rem;
font-weight: 700;
color: var(--ll-danger);
}
.ll-idle-timeout-label {
font-size: 0.875rem;
color: var(--ll-text-muted);
}
.ll-idle-timeout-progress {
height: 4px;
background-color: #e9ecef;
border-radius: 2px;
overflow: hidden;
margin-bottom: 1.5rem;
}
.ll-idle-timeout-progress-bar {
height: 100%;
background-color: var(--ll-warning);
transition: width 1s linear;
}
.ll-idle-timeout-actions {
display: flex;
gap: 0.75rem;
justify-content: center;
}
.ll-idle-timeout-btn {
padding: 0.625rem 1.25rem;
border-radius: 0.375rem;
font-weight: 500;
cursor: pointer;
transition: all 0.15s;
}
.ll-idle-timeout-btn-secondary {
background-color: #fff;
border: 1px solid var(--ll-border);
color: var(--ll-text);
}
.ll-idle-timeout-btn-secondary:hover {
background-color: #f5f5f5;
}
.ll-idle-timeout-btn-primary {
background-color: var(--ll-primary);
border: 1px solid var(--ll-primary);
color: #fff;
}
.ll-idle-timeout-btn-primary:hover {
background-color: #303f9f;
}
/* Session Timeout */
.ll-session-timeout {
position: fixed;
z-index: 1000;
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1rem;
background-color: #fff;
border: 1px solid var(--ll-border);
border-radius: 0.5rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.ll-session-timeout-top-right {
top: 1rem;
right: 1rem;
}
.ll-session-timeout-top-left {
top: 1rem;
left: 1rem;
}
.ll-session-timeout-bottom-right {
bottom: 1rem;
right: 1rem;
}
.ll-session-timeout-bottom-left {
bottom: 1rem;
left: 1rem;
}
.ll-session-timeout-icon {
color: var(--ll-warning);
}
.ll-session-timeout-label {
font-size: 0.75rem;
color: var(--ll-text-muted);
}
.ll-session-timeout-time {
font-weight: 600;
}
/* Sortable
-------------------------------------------- */
.ll-sortable {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.ll-sortable-horizontal {
flex-direction: row;
}
.ll-sortable-item {
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ll-sortable-item-dragging {
opacity: 0.5;
}
.ll-sortable-item-over {
border-top: 2px solid var(--ll-primary);
}
.ll-sortable-horizontal .ll-sortable-item-over {
border-top: none;
border-left: 2px solid var(--ll-primary);
}
.ll-sortable-disabled {
opacity: 0.6;
pointer-events: none;
}
.ll-sortable-handle {
cursor: grab;
padding: 0.25rem;
color: var(--ll-text-muted);
display: flex;
align-items: center;
}
.ll-sortable-handle:active {
cursor: grabbing;
}
/* Sortable List */
.ll-sortable-list-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 1rem;
background-color: #fff;
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
}
.ll-sortable-list-item-dragging {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ll-sortable-list-content {
flex: 1;
min-width: 0;
}
/* Draggable */
.ll-draggable {
cursor: grab;
}
.ll-draggable:active {
cursor: grabbing;
}
.ll-draggable-dragging {
opacity: 0.5;
}
.ll-draggable-disabled {
cursor: default;
opacity: 0.6;
}
/* Drag Drop Container */
.ll-drag-drop-container {
min-height: 100px;
padding: 1rem;
border: 2px dashed var(--ll-border);
border-radius: 0.5rem;
transition: all 0.15s;
}
.ll-drag-drop-container-over {
border-color: var(--ll-primary);
background-color: rgba(63, 81, 181, 0.05);
}
/* Kanban Board */
.ll-kanban-board {
display: flex;
gap: 1rem;
overflow-x: auto;
padding: 1rem 0;
}
.ll-kanban-column {
flex-shrink: 0;
width: 300px;
background-color: #f8f9fa;
border-radius: 0.5rem;
display: flex;
flex-direction: column;
max-height: 100%;
}
.ll-kanban-column-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem;
font-weight: 600;
}
.ll-kanban-column-title {
flex: 1;
}
.ll-kanban-column-count {
background-color: rgba(0, 0, 0, 0.1);
padding: 0.125rem 0.5rem;
border-radius: 1rem;
font-size: 0.75rem;
}
.ll-kanban-column-content {
flex: 1;
overflow-y: auto;
padding: 0 0.5rem 0.5rem;
min-height: 100px;
}
.ll-kanban-item {
background-color: #fff;
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
padding: 0.75rem;
margin-bottom: 0.5rem;
cursor: grab;
transition: box-shadow 0.15s;
}
.ll-kanban-item:hover {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.ll-kanban-item:active {
cursor: grabbing;
}
.ll-kanban-item-dragging {
opacity: 0.5;
}
.ll-kanban-empty {
padding: 2rem 1rem;
text-align: center;
color: var(--ll-text-muted);
font-size: 0.875rem;
border: 2px dashed var(--ll-border);
border-radius: 0.375rem;
}
/* =====================================================
PAGE COMPONENTS - Auth, Error, Mail, Chat, etc.
===================================================== */
/* Auth Pages */
.ll-auth-layout {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
background: var(--ll-bg-secondary);
}
.ll-auth-layout-split {
flex-direction: row;
padding: 0;
}
.ll-auth-layout-split .ll-auth-container {
width: 50%;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
.ll-auth-layout-split .ll-auth-brand-panel {
width: 50%;
min-height: 100vh;
background: linear-gradient(135deg, var(--ll-primary) 0%, var(--ll-primary-dark, #4338ca) 100%);
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
color: white;
}
.ll-auth-container {
width: 100%;
max-width: 420px;
}
.ll-auth-card {
background: var(--ll-bg);
border-radius: 0.75rem;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
padding: 2rem;
}
.ll-auth-header {
text-align: center;
margin-bottom: 2rem;
}
.ll-auth-logo {
max-height: 48px;
margin-bottom: 1rem;
}
.ll-auth-title {
font-size: 1.5rem;
font-weight: 600;
color: var(--ll-text);
margin: 0 0 0.5rem;
}
.ll-auth-subtitle {
color: var(--ll-text-muted);
font-size: 0.875rem;
margin: 0;
}
.ll-auth-form {
display: flex;
flex-direction: column;
gap: 1rem;
}
.ll-auth-field {
display: flex;
flex-direction: column;
gap: 0.375rem;
}
.ll-auth-field label {
font-size: 0.875rem;
font-weight: 500;
color: var(--ll-text);
}
.ll-auth-field input {
padding: 0.625rem 0.875rem;
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
font-size: 0.875rem;
transition: border-color 0.15s, box-shadow 0.15s;
}
.ll-auth-field input:focus {
outline: none;
border-color: var(--ll-primary);
box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.ll-auth-options {
display: flex;
align-items: center;
justify-content: space-between;
font-size: 0.875rem;
}
.ll-auth-remember {
display: flex;
align-items: center;
gap: 0.5rem;
cursor: pointer;
}
.ll-auth-forgot {
color: var(--ll-primary);
text-decoration: none;
}
.ll-auth-forgot:hover {
text-decoration: underline;
}
.ll-auth-submit {
padding: 0.75rem 1.5rem;
background: var(--ll-primary);
color: white;
border: none;
border-radius: 0.375rem;
font-size: 0.875rem;
font-weight: 500;
cursor: pointer;
transition: background 0.15s;
}
.ll-auth-submit:hover {
background: var(--ll-primary-dark, #4338ca);
}
.ll-auth-submit:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.ll-auth-divider {
display: flex;
align-items: center;
gap: 1rem;
margin: 1.5rem 0;
color: var(--ll-text-muted);
font-size: 0.75rem;
text-transform: uppercase;
}
.ll-auth-divider::before,
.ll-auth-divider::after {
content: '';
flex: 1;
height: 1px;
background: var(--ll-border);
}
.ll-auth-social {
display: flex;
gap: 0.75rem;
}
.ll-auth-social-btn {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 0.625rem;
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
background: var(--ll-bg);
color: var(--ll-text);
font-size: 0.875rem;
cursor: pointer;
transition: background 0.15s, border-color 0.15s;
}
.ll-auth-social-btn:hover {
background: var(--ll-bg-secondary);
border-color: var(--ll-text-muted);
}
.ll-auth-footer {
text-align: center;
margin-top: 1.5rem;
font-size: 0.875rem;
color: var(--ll-text-muted);
}
.ll-auth-footer a {
color: var(--ll-primary);
text-decoration: none;
}
.ll-auth-footer a:hover {
text-decoration: underline;
}
.ll-auth-error {
padding: 0.75rem;
background: rgba(239, 68, 68, 0.1);
border: 1px solid rgba(239, 68, 68, 0.2);
border-radius: 0.375rem;
color: #dc2626;
font-size: 0.875rem;
}
.ll-auth-avatar {
width: 80px;
height: 80px;
border-radius: 50%;
margin: 0 auto 1rem;
overflow: hidden;
background: var(--ll-bg-secondary);
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
color: var(--ll-text-muted);
}
.ll-auth-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.ll-auth-code-inputs {
display: flex;
gap: 0.5rem;
justify-content: center;
}
.ll-auth-code-input {
width: 48px;
height: 56px;
text-align: center;
font-size: 1.5rem;
font-weight: 600;
border: 2px solid var(--ll-border);
border-radius: 0.5rem;
transition: border-color 0.15s;
}
.ll-auth-code-input:focus {
outline: none;
border-color: var(--ll-primary);
}
/* Error Pages */
.ll-error-layout {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
background: var(--ll-bg);
}
.ll-error-container {
text-align: center;
max-width: 500px;
}
.ll-error-code {
font-size: 8rem;
font-weight: 700;
color: var(--ll-primary);
line-height: 1;
margin: 0;
}
.ll-error-title {
font-size: 1.5rem;
font-weight: 600;
color: var(--ll-text);
margin: 1rem 0 0.5rem;
}
.ll-error-message {
color: var(--ll-text-muted);
margin: 0 0 2rem;
}
.ll-error-actions {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.ll-error-btn {
padding: 0.75rem 1.5rem;
border-radius: 0.375rem;
font-size: 0.875rem;
font-weight: 500;
cursor: pointer;
transition: all 0.15s;
text-decoration: none;
}
.ll-error-btn-primary {
background: var(--ll-primary);
color: white;
border: none;
}
.ll-error-btn-primary:hover {
background: var(--ll-primary-dark, #4338ca);
}
.ll-error-btn-secondary {
background: transparent;
color: var(--ll-text);
border: 1px solid var(--ll-border);
}
.ll-error-btn-secondary:hover {
background: var(--ll-bg-secondary);
}
.ll-error-illustration {
max-width: 300px;
margin: 0 auto 2rem;
}
.ll-error-illustration svg {
width: 100%;
height: auto;
}
.ll-coming-soon-countdown {
display: flex;
gap: 1rem;
justify-content: center;
margin: 2rem 0;
}
.ll-countdown-item {
text-align: center;
}
.ll-countdown-value {
display: block;
font-size: 2.5rem;
font-weight: 700;
color: var(--ll-primary);
}
.ll-countdown-label {
font-size: 0.75rem;
color: var(--ll-text-muted);
text-transform: uppercase;
}
.ll-construction-progress {
max-width: 300px;
margin: 2rem auto;
}
.ll-construction-progress-bar {
height: 8px;
background: var(--ll-bg-secondary);
border-radius: 4px;
overflow: hidden;
}
.ll-construction-progress-fill {
height: 100%;
background: var(--ll-primary);
border-radius: 4px;
transition: width 0.3s;
}
.ll-construction-progress-text {
font-size: 0.875rem;
color: var(--ll-text-muted);
margin-top: 0.5rem;
}
/* Mail Pages */
.ll-mail-layout {
display: flex;
height: 100%;
min-height: 600px;
background: var(--ll-bg);
border-radius: 0.5rem;
overflow: hidden;
border: 1px solid var(--ll-border);
}
.ll-mail-sidebar {
width: 260px;
border-right: 1px solid var(--ll-border);
display: flex;
flex-direction: column;
background: var(--ll-bg-secondary);
}
.ll-mail-compose-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
margin: 1rem;
padding: 0.75rem 1rem;
background: var(--ll-primary);
color: white;
border: none;
border-radius: 0.375rem;
font-size: 0.875rem;
font-weight: 500;
cursor: pointer;
transition: background 0.15s;
}
.ll-mail-compose-btn:hover {
background: var(--ll-primary-dark, #4338ca);
}
.ll-mail-sidebar-content {
flex: 1;
overflow-y: auto;
padding: 0 0.5rem 1rem;
}
.ll-mail-section-title {
font-size: 0.75rem;
font-weight: 600;
color: var(--ll-text-muted);
text-transform: uppercase;
padding: 0.75rem 0.75rem 0.5rem;
}
.ll-mail-folder-list,
.ll-mail-label-list {
list-style: none;
margin: 0;
padding: 0;
}
.ll-mail-folder-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.5rem 0.75rem;
border-radius: 0.375rem;
cursor: pointer;
color: var(--ll-text);
font-size: 0.875rem;
transition: background 0.15s;
}
.ll-mail-folder-item:hover {
background: var(--ll-bg);
}
.ll-mail-folder-active {
background: var(--ll-primary);
color: white;
}
.ll-mail-folder-active:hover {
background: var(--ll-primary);
}
.ll-mail-folder-icon {
display: flex;
align-items: center;
}
.ll-mail-folder-name {
flex: 1;
}
.ll-mail-folder-count {
font-size: 0.75rem;
background: rgba(0, 0, 0, 0.1);
padding: 0.125rem 0.5rem;
border-radius: 10px;
}
.ll-mail-label-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.375rem 0.75rem;
cursor: pointer;
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-mail-label-item:hover {
background: var(--ll-bg);
border-radius: 0.375rem;
}
.ll-mail-label-dot {
width: 10px;
height: 10px;
border-radius: 50%;
}
.ll-mail-content {
flex: 1;
display: flex;
flex-direction: column;
overflow: hidden;
}
.ll-mail-toolbar {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.75rem 1rem;
border-bottom: 1px solid var(--ll-border);
background: var(--ll-bg);
}
.ll-mail-toolbar-actions {
display: flex;
gap: 0.25rem;
}
.ll-mail-toolbar-btn {
padding: 0.5rem;
background: none;
border: none;
border-radius: 0.375rem;
color: var(--ll-text-muted);
cursor: pointer;
transition: background 0.15s, color 0.15s;
}
.ll-mail-toolbar-btn:hover {
background: var(--ll-bg-secondary);
color: var(--ll-text);
}
.ll-mail-toolbar-btn-danger:hover {
color: #ef4444;
}
.ll-mail-search {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 0.75rem;
background: var(--ll-bg-secondary);
border-radius: 0.375rem;
}
.ll-mail-search input {
border: none;
background: none;
font-size: 0.875rem;
width: 200px;
color: var(--ll-text);
}
.ll-mail-search input:focus {
outline: none;
}
.ll-mail-list {
flex: 1;
overflow-y: auto;
}
.ll-mail-list-header {
display: flex;
align-items: center;
gap: 1rem;
padding: 0.75rem 1rem;
border-bottom: 1px solid var(--ll-border);
font-size: 0.875rem;
color: var(--ll-text-muted);
}
.ll-mail-checkbox {
display: flex;
align-items: center;
}
.ll-mail-checkbox input {
width: 16px;
height: 16px;
cursor: pointer;
}
.ll-mail-messages {
flex: 1;
}
.ll-mail-message {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 1rem;
border-bottom: 1px solid var(--ll-border);
cursor: pointer;
transition: background 0.15s;
}
.ll-mail-message:hover {
background: var(--ll-bg-secondary);
}
.ll-mail-message-unread {
background: rgba(99, 102, 241, 0.05);
}
.ll-mail-message-unread .ll-mail-message-sender,
.ll-mail-message-unread .ll-mail-message-subject {
font-weight: 600;
}
.ll-mail-message-selected {
background: rgba(99, 102, 241, 0.1);
}
.ll-mail-star {
padding: 0.25rem;
background: none;
border: none;
color: var(--ll-text-muted);
cursor: pointer;
transition: color 0.15s;
}
.ll-mail-star:hover,
.ll-mail-star-active {
color: #f59e0b;
}
.ll-mail-message-content {
flex: 1;
display: flex;
align-items: center;
gap: 1rem;
min-width: 0;
}
.ll-mail-message-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
overflow: hidden;
background: var(--ll-primary);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 600;
flex-shrink: 0;
}
.ll-mail-message-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.ll-mail-message-info {
flex: 1;
min-width: 0;
}
.ll-mail-message-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 0.25rem;
}
.ll-mail-message-sender {
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-mail-message-date {
font-size: 0.75rem;
color: var(--ll-text-muted);
}
.ll-mail-message-subject {
font-size: 0.875rem;
color: var(--ll-text);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ll-mail-message-preview {
font-size: 0.8125rem;
color: var(--ll-text-muted);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ll-mail-message-attachment {
color: var(--ll-text-muted);
flex-shrink: 0;
}
.ll-mail-list-empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 4rem 2rem;
color: var(--ll-text-muted);
}
.ll-mail-empty-icon {
margin-bottom: 1rem;
opacity: 0.5;
}
/* Mail Read View */
.ll-mail-read {
flex: 1;
overflow-y: auto;
padding: 1.5rem;
}
.ll-mail-read-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 1.5rem;
}
.ll-mail-read-back {
padding: 0.5rem;
background: none;
border: none;
color: var(--ll-text-muted);
cursor: pointer;
border-radius: 0.375rem;
transition: background 0.15s;
}
.ll-mail-read-back:hover {
background: var(--ll-bg-secondary);
}
.ll-mail-read-actions {
display: flex;
gap: 0.25rem;
}
.ll-mail-read-btn {
padding: 0.5rem;
background: none;
border: none;
color: var(--ll-text-muted);
cursor: pointer;
border-radius: 0.375rem;
transition: background 0.15s, color 0.15s;
}
.ll-mail-read-btn:hover {
background: var(--ll-bg-secondary);
color: var(--ll-text);
}
.ll-mail-read-btn-danger:hover {
color: #ef4444;
}
.ll-mail-read-btn-starred {
color: #f59e0b;
}
.ll-mail-read-subject {
margin-bottom: 1.5rem;
}
.ll-mail-read-subject h2 {
font-size: 1.25rem;
font-weight: 600;
color: var(--ll-text);
margin: 0 0 0.5rem;
}
.ll-mail-read-labels {
display: flex;
gap: 0.5rem;
}
.ll-mail-read-label {
font-size: 0.75rem;
padding: 0.125rem 0.5rem;
background: var(--ll-bg-secondary);
border-radius: 10px;
color: var(--ll-text-muted);
}
.ll-mail-read-meta {
display: flex;
align-items: center;
gap: 1rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid var(--ll-border);
margin-bottom: 1.5rem;
}
.ll-mail-read-avatar {
width: 48px;
height: 48px;
border-radius: 50%;
overflow: hidden;
background: var(--ll-primary);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 600;
font-size: 1.25rem;
}
.ll-mail-read-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.ll-mail-read-info {
flex: 1;
}
.ll-mail-read-sender {
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-mail-read-sender strong {
font-weight: 600;
}
.ll-mail-read-sender span {
color: var(--ll-text-muted);
margin-left: 0.5rem;
}
.ll-mail-read-recipients {
font-size: 0.8125rem;
color: var(--ll-text-muted);
}
.ll-mail-read-date {
font-size: 0.8125rem;
color: var(--ll-text-muted);
}
.ll-mail-read-body {
font-size: 0.9375rem;
line-height: 1.7;
color: var(--ll-text);
}
.ll-mail-read-attachments {
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid var(--ll-border);
}
.ll-mail-read-attachments-header {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
color: var(--ll-text-muted);
margin-bottom: 1rem;
}
.ll-mail-read-attachments-list {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
}
.ll-mail-attachment {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 1rem;
background: var(--ll-bg-secondary);
border-radius: 0.375rem;
text-decoration: none;
color: var(--ll-text);
transition: background 0.15s;
}
.ll-mail-attachment:hover {
background: var(--ll-border);
}
.ll-mail-attachment-icon {
color: var(--ll-text-muted);
}
.ll-mail-attachment-name {
font-size: 0.875rem;
}
.ll-mail-attachment-size {
font-size: 0.75rem;
color: var(--ll-text-muted);
}
/* Mail Compose */
.ll-mail-compose {
background: var(--ll-bg);
border-radius: 0.5rem;
border: 1px solid var(--ll-border);
overflow: hidden;
}
.ll-mail-compose-modal {
position: fixed;
bottom: 1rem;
right: 1rem;
width: 600px;
max-width: calc(100vw - 2rem);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
z-index: 1000;
}
.ll-mail-compose-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.75rem 1rem;
background: var(--ll-bg-secondary);
border-bottom: 1px solid var(--ll-border);
}
.ll-mail-compose-header h3 {
font-size: 0.875rem;
font-weight: 600;
margin: 0;
}
.ll-mail-compose-close {
padding: 0.25rem;
background: none;
border: none;
color: var(--ll-text-muted);
cursor: pointer;
}
.ll-mail-compose-form {
padding: 0;
}
.ll-mail-compose-field {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.625rem 1rem;
border-bottom: 1px solid var(--ll-border);
}
.ll-mail-compose-field label {
font-size: 0.8125rem;
color: var(--ll-text-muted);
width: 50px;
}
.ll-mail-compose-field input {
flex: 1;
border: none;
font-size: 0.875rem;
color: var(--ll-text);
background: none;
}
.ll-mail-compose-field input:focus {
outline: none;
}
.ll-mail-compose-input-row {
display: flex;
flex: 1;
align-items: center;
}
.ll-mail-compose-cc-toggle {
display: flex;
gap: 0.5rem;
}
.ll-mail-compose-cc-toggle button {
padding: 0.25rem 0.5rem;
background: none;
border: none;
color: var(--ll-text-muted);
font-size: 0.8125rem;
cursor: pointer;
}
.ll-mail-compose-cc-toggle button:hover {
color: var(--ll-primary);
}
.ll-mail-compose-body {
padding: 0;
}
.ll-mail-compose-body textarea {
width: 100%;
min-height: 200px;
padding: 1rem;
border: none;
font-size: 0.875rem;
resize: vertical;
color: var(--ll-text);
}
.ll-mail-compose-body textarea:focus {
outline: none;
}
.ll-mail-compose-footer {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.75rem 1rem;
background: var(--ll-bg-secondary);
border-top: 1px solid var(--ll-border);
}
.ll-mail-compose-actions-left {
display: flex;
gap: 0.5rem;
}
.ll-mail-compose-btn {
padding: 0.5rem 1rem;
background: none;
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
font-size: 0.8125rem;
color: var(--ll-text);
cursor: pointer;
transition: background 0.15s;
}
.ll-mail-compose-btn:hover {
background: var(--ll-bg);
}
.ll-mail-compose-btn-primary {
display: flex;
align-items: center;
gap: 0.5rem;
background: var(--ll-primary);
color: white;
border: none;
}
.ll-mail-compose-btn-primary:hover {
background: var(--ll-primary-dark, #4338ca);
}
.ll-mail-compose-btn-danger {
color: #ef4444;
}
/* Chat Pages */
.ll-chat-layout {
display: flex;
height: 100%;
min-height: 600px;
background: var(--ll-bg);
border-radius: 0.5rem;
overflow: hidden;
border: 1px solid var(--ll-border);
}
.ll-chat-sidebar {
width: 320px;
border-right: 1px solid var(--ll-border);
display: flex;
flex-direction: column;
background: var(--ll-bg);
}
.ll-chat-main {
flex: 1;
display: flex;
flex-direction: column;
position: relative;
}
.ll-chat-sidebar-toggle {
display: none;
position: absolute;
top: 1rem;
left: 1rem;
padding: 0.5rem;
background: var(--ll-bg);
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
cursor: pointer;
z-index: 10;
}
.ll-chat-conversations {
display: flex;
flex-direction: column;
height: 100%;
}
.ll-chat-user-header {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 1rem;
border-bottom: 1px solid var(--ll-border);
}
.ll-chat-user-avatar {
position: relative;
width: 40px;
height: 40px;
}
.ll-chat-user-avatar img,
.ll-chat-user-avatar > span {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
background: var(--ll-primary);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
}
.ll-chat-status {
position: absolute;
bottom: 0;
right: 0;
width: 12px;
height: 12px;
border-radius: 50%;
border: 2px solid var(--ll-bg);
}
.ll-chat-status-online { background: #10b981; }
.ll-chat-status-offline { background: #9ca3af; }
.ll-chat-status-away { background: #f59e0b; }
.ll-chat-status-busy { background: #ef4444; }
.ll-chat-user-info {
flex: 1;
}
.ll-chat-user-name {
font-weight: 600;
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-chat-user-status-text {
font-size: 0.75rem;
color: var(--ll-text-muted);
text-transform: capitalize;
}
.ll-chat-new-btn {
padding: 0.5rem;
background: none;
border: none;
color: var(--ll-text-muted);
cursor: pointer;
border-radius: 0.375rem;
transition: background 0.15s;
}
.ll-chat-new-btn:hover {
background: var(--ll-bg-secondary);
}
.ll-chat-search {
display: flex;
align-items: center;
gap: 0.5rem;
margin: 1rem;
padding: 0.5rem 0.75rem;
background: var(--ll-bg-secondary);
border-radius: 0.375rem;
}
.ll-chat-search input {
flex: 1;
border: none;
background: none;
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-chat-search input:focus {
outline: none;
}
.ll-chat-conversations-list {
flex: 1;
overflow-y: auto;
}
.ll-chat-conversation-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 1rem;
cursor: pointer;
transition: background 0.15s;
}
.ll-chat-conversation-item:hover {
background: var(--ll-bg-secondary);
}
.ll-chat-conversation-active {
background: rgba(99, 102, 241, 0.1);
}
.ll-chat-conversation-unread .ll-chat-conversation-name,
.ll-chat-conversation-unread .ll-chat-conversation-preview {
font-weight: 600;
}
.ll-chat-conversation-avatar {
position: relative;
width: 48px;
height: 48px;
flex-shrink: 0;
}
.ll-chat-conversation-avatar img,
.ll-chat-conversation-avatar > span {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
background: var(--ll-primary);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
}
.ll-chat-conversation-content {
flex: 1;
min-width: 0;
}
.ll-chat-conversation-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 0.25rem;
}
.ll-chat-conversation-name {
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-chat-conversation-time {
font-size: 0.75rem;
color: var(--ll-text-muted);
}
.ll-chat-conversation-preview {
font-size: 0.8125rem;
color: var(--ll-text-muted);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ll-chat-conversation-badge {
background: var(--ll-primary);
color: white;
font-size: 0.75rem;
font-weight: 600;
padding: 0.125rem 0.5rem;
border-radius: 10px;
flex-shrink: 0;
}
.ll-chat-conversations-empty {
padding: 2rem;
text-align: center;
color: var(--ll-text-muted);
}
/* Chat Window */
.ll-chat-window {
display: flex;
flex-direction: column;
height: 100%;
}
.ll-chat-window-header {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 1rem;
border-bottom: 1px solid var(--ll-border);
background: var(--ll-bg);
}
.ll-chat-window-back {
padding: 0.5rem;
background: none;
border: none;
color: var(--ll-text-muted);
cursor: pointer;
border-radius: 0.375rem;
display: none;
}
.ll-chat-window-info {
display: flex;
align-items: center;
gap: 0.75rem;
flex: 1;
}
.ll-chat-window-avatar {
position: relative;
width: 40px;
height: 40px;
}
.ll-chat-window-avatar img,
.ll-chat-window-avatar > span {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
background: var(--ll-primary);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
}
.ll-chat-window-details {
flex: 1;
}
.ll-chat-window-name {
font-weight: 600;
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-chat-window-status {
font-size: 0.75rem;
color: var(--ll-text-muted);
}
.ll-chat-window-actions {
display: flex;
gap: 0.25rem;
}
.ll-chat-window-action {
padding: 0.5rem;
background: none;
border: none;
color: var(--ll-text-muted);
cursor: pointer;
border-radius: 0.375rem;
transition: background 0.15s;
}
.ll-chat-window-action:hover {
background: var(--ll-bg-secondary);
}
.ll-chat-window-messages {
flex: 1;
overflow-y: auto;
padding: 1rem;
background: var(--ll-bg-secondary);
}
.ll-chat-loading {
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
.ll-chat-loading-spinner {
width: 32px;
height: 32px;
border: 3px solid var(--ll-border);
border-top-color: var(--ll-primary);
border-radius: 50%;
animation: ll-spin 0.8s linear infinite;
}
.ll-chat-load-more {
display: block;
margin: 0 auto 1rem;
padding: 0.5rem 1rem;
background: var(--ll-bg);
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
font-size: 0.8125rem;
color: var(--ll-text-muted);
cursor: pointer;
transition: background 0.15s;
}
.ll-chat-load-more:hover {
background: var(--ll-border);
}
.ll-chat-message-group {
margin-bottom: 1rem;
}
.ll-chat-date-separator {
display: flex;
align-items: center;
justify-content: center;
margin: 1rem 0;
}
.ll-chat-date-separator span {
padding: 0.25rem 0.75rem;
background: var(--ll-bg);
border-radius: 10px;
font-size: 0.75rem;
color: var(--ll-text-muted);
}
.ll-chat-message {
display: flex;
gap: 0.5rem;
margin-bottom: 0.5rem;
max-width: 75%;
}
.ll-chat-message-own {
flex-direction: row-reverse;
margin-left: auto;
}
.ll-chat-message-avatar {
width: 32px;
height: 32px;
flex-shrink: 0;
}
.ll-chat-message-avatar img,
.ll-chat-message-avatar > span {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
background: var(--ll-primary);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.75rem;
font-weight: 600;
}
.ll-chat-message-avatar-placeholder {
width: 32px;
}
.ll-chat-message-content {
display: flex;
flex-direction: column;
}
.ll-chat-message-sender {
font-size: 0.75rem;
font-weight: 600;
color: var(--ll-text-muted);
margin-bottom: 0.25rem;
}
.ll-chat-message-bubble {
padding: 0.625rem 1rem;
background: var(--ll-bg);
border-radius: 1rem;
font-size: 0.875rem;
color: var(--ll-text);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.ll-chat-message-own .ll-chat-message-bubble {
background: var(--ll-primary);
color: white;
}
.ll-chat-message-time {
display: flex;
align-items: center;
gap: 0.25rem;
font-size: 0.6875rem;
color: var(--ll-text-muted);
margin-top: 0.25rem;
}
.ll-chat-message-own .ll-chat-message-time {
justify-content: flex-end;
}
.ll-chat-message-image {
max-width: 200px;
border-radius: 0.5rem;
}
.ll-chat-message-file {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 0.75rem;
background: var(--ll-bg-secondary);
border-radius: 0.375rem;
text-decoration: none;
color: var(--ll-text);
font-size: 0.8125rem;
}
.ll-chat-message-system {
text-align: center;
padding: 0.5rem;
font-size: 0.8125rem;
color: var(--ll-text-muted);
font-style: italic;
}
.ll-chat-typing {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem;
font-size: 0.8125rem;
color: var(--ll-text-muted);
}
.ll-chat-typing-indicator {
display: flex;
gap: 0.25rem;
}
.ll-chat-typing-indicator span {
width: 6px;
height: 6px;
background: var(--ll-text-muted);
border-radius: 50%;
animation: ll-typing 1.4s infinite ease-in-out both;
}
.ll-chat-typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.ll-chat-typing-indicator span:nth-child(2) { animation-delay: -0.16s; }
@keyframes ll-typing {
0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
40% { transform: scale(1); opacity: 1; }
}
.ll-chat-window-input {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 1rem;
border-top: 1px solid var(--ll-border);
background: var(--ll-bg);
}
.ll-chat-input-action {
padding: 0.5rem;
background: none;
border: none;
color: var(--ll-text-muted);
cursor: pointer;
border-radius: 0.375rem;
transition: background 0.15s, color 0.15s;
}
.ll-chat-input-action:hover {
background: var(--ll-bg-secondary);
color: var(--ll-text);
}
.ll-chat-window-input textarea {
flex: 1;
padding: 0.5rem 0.75rem;
border: 1px solid var(--ll-border);
border-radius: 1rem;
font-size: 0.875rem;
resize: none;
max-height: 100px;
color: var(--ll-text);
}
.ll-chat-window-input textarea:focus {
outline: none;
border-color: var(--ll-primary);
}
.ll-chat-send-btn {
padding: 0.625rem;
background: var(--ll-primary);
border: none;
border-radius: 50%;
color: white;
cursor: pointer;
transition: background 0.15s;
}
.ll-chat-send-btn:hover {
background: var(--ll-primary-dark, #4338ca);
}
.ll-chat-send-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
/* Chat Empty State */
.ll-chat-empty-state {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
padding: 2rem;
text-align: center;
color: var(--ll-text-muted);
}
.ll-chat-empty-icon {
margin-bottom: 1rem;
opacity: 0.5;
}
.ll-chat-empty-state h3 {
font-size: 1.125rem;
font-weight: 600;
color: var(--ll-text);
margin: 0 0 0.5rem;
}
.ll-chat-empty-state p {
margin: 0 0 1.5rem;
}
.ll-chat-empty-action {
padding: 0.625rem 1.25rem;
background: var(--ll-primary);
color: white;
border: none;
border-radius: 0.375rem;
font-size: 0.875rem;
cursor: pointer;
transition: background 0.15s;
}
.ll-chat-empty-action:hover {
background: var(--ll-primary-dark, #4338ca);
}
/* Task Manager */
.ll-task-layout {
display: flex;
height: 100%;
min-height: 600px;
}
.ll-task-sidebar {
width: 260px;
border-right: 1px solid var(--ll-border);
background: var(--ll-bg);
overflow-y: auto;
}
.ll-task-content {
flex: 1;
display: flex;
flex-direction: column;
overflow: hidden;
background: var(--ll-bg-secondary);
}
.ll-task-sidebar-content {
padding: 1rem;
}
.ll-task-filters {
margin-bottom: 1.5rem;
}
.ll-task-filter-list {
list-style: none;
margin: 0;
padding: 0;
}
.ll-task-filter-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.5rem 0.75rem;
border-radius: 0.375rem;
cursor: pointer;
color: var(--ll-text);
font-size: 0.875rem;
transition: background 0.15s;
}
.ll-task-filter-item:hover {
background: var(--ll-bg-secondary);
}
.ll-task-filter-active {
background: var(--ll-primary);
color: white;
}
.ll-task-filter-active:hover {
background: var(--ll-primary);
}
.ll-task-filter-icon {
display: flex;
align-items: center;
}
.ll-task-filter-name {
flex: 1;
}
.ll-task-filter-count {
font-size: 0.75rem;
opacity: 0.7;
}
.ll-task-projects-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.5rem 0.75rem;
font-size: 0.75rem;
font-weight: 600;
color: var(--ll-text-muted);
text-transform: uppercase;
}
.ll-task-add-project {
padding: 0.25rem;
background: none;
border: none;
color: var(--ll-text-muted);
cursor: pointer;
border-radius: 0.25rem;
}
.ll-task-add-project:hover {
background: var(--ll-bg-secondary);
}
.ll-task-project-list {
list-style: none;
margin: 0;
padding: 0;
}
.ll-task-project-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.5rem 0.75rem;
border-radius: 0.375rem;
cursor: pointer;
font-size: 0.875rem;
color: var(--ll-text);
transition: background 0.15s;
}
.ll-task-project-item:hover {
background: var(--ll-bg-secondary);
}
.ll-task-project-active {
background: var(--ll-bg-secondary);
}
.ll-task-project-color {
width: 8px;
height: 8px;
border-radius: 50%;
}
.ll-task-project-name {
flex: 1;
}
.ll-task-project-count {
font-size: 0.75rem;
color: var(--ll-text-muted);
}
/* Task Toolbar */
.ll-task-toolbar {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem;
background: var(--ll-bg);
border-bottom: 1px solid var(--ll-border);
}
.ll-task-toolbar-left {
display: flex;
gap: 0.5rem;
}
.ll-task-toolbar-add {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
background: var(--ll-primary);
color: white;
border: none;
border-radius: 0.375rem;
font-size: 0.875rem;
font-weight: 500;
cursor: pointer;
transition: background 0.15s;
}
.ll-task-toolbar-add:hover {
background: var(--ll-primary-dark, #4338ca);
}
.ll-task-toolbar-right {
display: flex;
align-items: center;
gap: 1rem;
}
.ll-task-toolbar-search {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 0.75rem;
background: var(--ll-bg-secondary);
border-radius: 0.375rem;
}
.ll-task-toolbar-search input {
border: none;
background: none;
font-size: 0.875rem;
width: 180px;
color: var(--ll-text);
}
.ll-task-toolbar-search input:focus {
outline: none;
}
.ll-task-toolbar-btn {
padding: 0.5rem;
background: none;
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
color: var(--ll-text-muted);
cursor: pointer;
transition: background 0.15s;
}
.ll-task-toolbar-btn:hover {
background: var(--ll-bg-secondary);
}
.ll-task-toolbar-views {
display: flex;
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
overflow: hidden;
}
.ll-task-toolbar-view {
padding: 0.5rem 0.625rem;
background: none;
border: none;
color: var(--ll-text-muted);
cursor: pointer;
transition: background 0.15s, color 0.15s;
}
.ll-task-toolbar-view:not(:last-child) {
border-right: 1px solid var(--ll-border);
}
.ll-task-toolbar-view:hover {
background: var(--ll-bg-secondary);
}
.ll-task-toolbar-view-active {
background: var(--ll-primary);
color: white;
}
.ll-task-toolbar-view-active:hover {
background: var(--ll-primary);
}
/* Task Board */
.ll-task-board {
display: flex;
gap: 1rem;
padding: 1rem;
flex: 1;
overflow-x: auto;
}
.ll-task-column {
flex: 0 0 300px;
display: flex;
flex-direction: column;
background: var(--ll-bg);
border-radius: 0.5rem;
max-height: 100%;
}
.ll-task-column-header {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 1rem;
border-bottom: 1px solid var(--ll-border);
}
.ll-task-column-indicator {
width: 4px;
height: 16px;
border-radius: 2px;
}
.ll-task-column-title {
flex: 1;
font-weight: 600;
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-task-column-count {
font-size: 0.75rem;
color: var(--ll-text-muted);
background: var(--ll-bg-secondary);
padding: 0.125rem 0.5rem;
border-radius: 10px;
}
.ll-task-column-content {
flex: 1;
overflow-y: auto;
padding: 0.75rem;
}
.ll-task-card {
background: var(--ll-bg);
border: 1px solid var(--ll-border);
border-radius: 0.5rem;
padding: 0.75rem;
margin-bottom: 0.75rem;
cursor: grab;
transition: box-shadow 0.15s, transform 0.15s;
}
.ll-task-card:hover {
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.ll-task-card:active {
cursor: grabbing;
}
.ll-task-card-dragging {
opacity: 0.5;
}
.ll-task-card-header {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.5rem;
}
.ll-task-card-priority {
width: 6px;
height: 6px;
border-radius: 50%;
}
.ll-task-card-tags {
display: flex;
gap: 0.25rem;
flex: 1;
}
.ll-task-card-tag {
font-size: 0.6875rem;
padding: 0.125rem 0.375rem;
background: var(--ll-bg-secondary);
border-radius: 0.25rem;
color: var(--ll-text-muted);
}
.ll-task-card-title {
font-size: 0.875rem;
font-weight: 500;
color: var(--ll-text);
margin: 0 0 0.375rem;
}
.ll-task-card-description {
font-size: 0.8125rem;
color: var(--ll-text-muted);
margin: 0 0 0.75rem;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.ll-task-card-progress {
height: 4px;
background: var(--ll-bg-secondary);
border-radius: 2px;
margin-bottom: 0.75rem;
overflow: hidden;
}
.ll-task-card-progress-bar {
height: 100%;
background: var(--ll-primary);
border-radius: 2px;
}
.ll-task-card-footer {
display: flex;
align-items: center;
gap: 0.5rem;
}
.ll-task-card-due {
display: flex;
align-items: center;
gap: 0.25rem;
font-size: 0.75rem;
color: var(--ll-text-muted);
}
.ll-task-card-overdue {
color: #ef4444;
}
.ll-task-card-meta {
display: flex;
align-items: center;
gap: 0.5rem;
flex: 1;
justify-content: flex-end;
}
.ll-task-card-attachments,
.ll-task-card-comments {
display: flex;
align-items: center;
gap: 0.25rem;
font-size: 0.75rem;
color: var(--ll-text-muted);
}
.ll-task-card-assignee {
width: 24px;
height: 24px;
border-radius: 50%;
overflow: hidden;
background: var(--ll-primary);
color: white;
font-size: 0.625rem;
display: flex;
align-items: center;
justify-content: center;
}
.ll-task-card-assignee img {
width: 100%;
height: 100%;
object-fit: cover;
}
.ll-task-add-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
width: 100%;
padding: 0.75rem;
background: none;
border: 2px dashed var(--ll-border);
border-radius: 0.5rem;
color: var(--ll-text-muted);
font-size: 0.8125rem;
cursor: pointer;
transition: border-color 0.15s, color 0.15s;
}
.ll-task-add-btn:hover {
border-color: var(--ll-primary);
color: var(--ll-primary);
}
/* Task List View */
.ll-task-list {
padding: 1rem;
}
.ll-task-list-group {
margin-bottom: 1.5rem;
}
.ll-task-list-group-header {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 0;
font-size: 0.75rem;
font-weight: 600;
color: var(--ll-text-muted);
text-transform: uppercase;
border-bottom: 1px solid var(--ll-border);
margin-bottom: 0.5rem;
}
.ll-task-list-group-count {
background: var(--ll-bg-secondary);
padding: 0.125rem 0.5rem;
border-radius: 10px;
}
.ll-task-list-items {
background: var(--ll-bg);
border-radius: 0.5rem;
overflow: hidden;
}
.ll-task-list-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 1rem;
border-bottom: 1px solid var(--ll-border);
transition: background 0.15s;
}
.ll-task-list-item:last-child {
border-bottom: none;
}
.ll-task-list-item:hover {
background: var(--ll-bg-secondary);
}
.ll-task-list-item-done {
opacity: 0.6;
}
.ll-task-list-item-done .ll-task-list-item-title {
text-decoration: line-through;
}
.ll-task-checkbox {
display: flex;
align-items: center;
}
.ll-task-checkbox input {
width: 18px;
height: 18px;
cursor: pointer;
}
.ll-task-list-item-content {
flex: 1;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
cursor: pointer;
}
.ll-task-list-item-main {
display: flex;
align-items: center;
gap: 0.75rem;
}
.ll-task-list-item-priority {
width: 6px;
height: 6px;
border-radius: 50%;
}
.ll-task-list-item-title {
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-task-list-item-meta {
display: flex;
align-items: center;
gap: 1rem;
}
.ll-task-list-item-tags {
display: flex;
gap: 0.25rem;
}
.ll-task-list-item-tag {
font-size: 0.6875rem;
padding: 0.125rem 0.375rem;
background: var(--ll-bg-secondary);
border-radius: 0.25rem;
color: var(--ll-text-muted);
}
.ll-task-list-item-due {
font-size: 0.75rem;
color: var(--ll-text-muted);
}
.ll-task-list-item-overdue {
color: #ef4444;
}
.ll-task-list-item-assignee {
width: 24px;
height: 24px;
border-radius: 50%;
overflow: hidden;
background: var(--ll-primary);
color: white;
font-size: 0.625rem;
display: flex;
align-items: center;
justify-content: center;
}
.ll-task-list-item-assignee img {
width: 100%;
height: 100%;
object-fit: cover;
}
.ll-task-list-empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 4rem 2rem;
color: var(--ll-text-muted);
}
/* Task Detail */
.ll-task-detail {
background: var(--ll-bg);
border-radius: 0.5rem;
border: 1px solid var(--ll-border);
max-width: 600px;
margin: 0 auto;
}
.ll-task-detail-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem;
border-bottom: 1px solid var(--ll-border);
}
.ll-task-detail-header h3 {
font-size: 1rem;
font-weight: 600;
margin: 0;
}
.ll-task-detail-actions {
display: flex;
gap: 0.25rem;
}
.ll-task-detail-btn {
padding: 0.375rem;
background: none;
border: none;
color: var(--ll-text-muted);
cursor: pointer;
border-radius: 0.25rem;
transition: background 0.15s;
}
.ll-task-detail-btn:hover {
background: var(--ll-bg-secondary);
}
.ll-task-detail-btn-danger:hover {
color: #ef4444;
}
.ll-task-detail-content {
padding: 1rem;
}
.ll-task-detail-field {
margin-bottom: 1rem;
}
.ll-task-detail-field label {
display: block;
font-size: 0.75rem;
font-weight: 600;
color: var(--ll-text-muted);
text-transform: uppercase;
margin-bottom: 0.375rem;
}
.ll-task-detail-field input,
.ll-task-detail-field textarea,
.ll-task-detail-field select {
width: 100%;
padding: 0.5rem 0.75rem;
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-task-detail-field textarea {
min-height: 80px;
resize: vertical;
}
.ll-task-detail-field input:focus,
.ll-task-detail-field textarea:focus,
.ll-task-detail-field select:focus {
outline: none;
border-color: var(--ll-primary);
}
.ll-task-detail-row {
display: flex;
gap: 1rem;
}
.ll-task-detail-row .ll-task-detail-field {
flex: 1;
}
.ll-task-detail-footer {
padding: 1rem;
border-top: 1px solid var(--ll-border);
}
.ll-task-detail-save {
width: 100%;
padding: 0.75rem;
background: var(--ll-primary);
color: white;
border: none;
border-radius: 0.375rem;
font-size: 0.875rem;
font-weight: 500;
cursor: pointer;
transition: background 0.15s;
}
.ll-task-detail-save:hover {
background: var(--ll-primary-dark, #4338ca);
}
/* User Profile Pages */
.ll-profile-layout {
display: flex;
flex-direction: column;
}
.ll-profile-layout-standard .ll-profile-body {
display: flex;
gap: 1.5rem;
padding: 1.5rem;
}
.ll-profile-sidebar {
width: 300px;
flex-shrink: 0;
}
.ll-profile-main {
flex: 1;
min-width: 0;
}
.ll-profile-header {
background: var(--ll-bg);
border-radius: 0.5rem;
overflow: hidden;
}
.ll-profile-header-with-cover {
position: relative;
}
.ll-profile-cover {
height: 200px;
background: linear-gradient(135deg, var(--ll-primary) 0%, #8b5cf6 100%);
background-size: cover;
background-position: center;
}
.ll-profile-header-content {
display: flex;
align-items: flex-end;
gap: 1.5rem;
padding: 1.5rem;
margin-top: -60px;
position: relative;
}
.ll-profile-avatar {
width: 120px;
height: 120px;
border-radius: 50%;
border: 4px solid var(--ll-bg);
overflow: hidden;
background: var(--ll-primary);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 2.5rem;
font-weight: 600;
position: relative;
flex-shrink: 0;
}
.ll-profile-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.ll-profile-verified {
position: absolute;
bottom: 8px;
right: 8px;
background: var(--ll-bg);
border-radius: 50%;
padding: 2px;
color: var(--ll-primary);
}
.ll-profile-info {
flex: 1;
min-width: 0;
}
.ll-profile-name-section {
display: flex;
align-items: center;
gap: 0.75rem;
flex-wrap: wrap;
}
.ll-profile-name {
font-size: 1.5rem;
font-weight: 700;
color: var(--ll-text);
margin: 0;
}
.ll-profile-badges {
display: flex;
gap: 0.25rem;
}
.ll-profile-badge {
width: 24px;
height: 24px;
border-radius: 50%;
background: var(--ll-primary);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.75rem;
}
.ll-profile-title {
font-size: 0.9375rem;
color: var(--ll-text-muted);
margin: 0.25rem 0 0;
}
.ll-profile-location {
display: flex;
align-items: center;
gap: 0.25rem;
font-size: 0.875rem;
color: var(--ll-text-muted);
margin: 0.25rem 0 0;
}
.ll-profile-stats {
display: flex;
gap: 2rem;
margin-top: 1rem;
}
.ll-profile-stat {
text-align: center;
}
.ll-profile-stat-value {
display: block;
font-size: 1.25rem;
font-weight: 700;
color: var(--ll-text);
}
.ll-profile-stat-label {
font-size: 0.75rem;
color: var(--ll-text-muted);
}
.ll-profile-actions {
display: flex;
gap: 0.5rem;
flex-shrink: 0;
}
.ll-profile-btn {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
border-radius: 0.375rem;
font-size: 0.875rem;
font-weight: 500;
cursor: pointer;
transition: all 0.15s;
}
.ll-profile-btn-primary {
background: var(--ll-primary);
color: white;
border: none;
}
.ll-profile-btn-primary:hover {
background: var(--ll-primary-dark, #4338ca);
}
.ll-profile-btn-secondary {
background: var(--ll-bg);
color: var(--ll-text);
border: 1px solid var(--ll-border);
}
.ll-profile-btn-secondary:hover {
background: var(--ll-bg-secondary);
}
.ll-profile-sidebar-content {
background: var(--ll-bg);
border-radius: 0.5rem;
padding: 1.25rem;
}
.ll-profile-section {
margin-bottom: 1.5rem;
}
.ll-profile-section:last-child {
margin-bottom: 0;
}
.ll-profile-section-title {
font-size: 0.75rem;
font-weight: 600;
color: var(--ll-text-muted);
text-transform: uppercase;
margin: 0 0 0.75rem;
}
.ll-profile-bio {
font-size: 0.875rem;
color: var(--ll-text);
line-height: 1.6;
margin: 0;
}
.ll-profile-info-list {
list-style: none;
margin: 0;
padding: 0;
}
.ll-profile-info-list li {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.5rem 0;
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-profile-info-list li svg {
color: var(--ll-text-muted);
flex-shrink: 0;
}
.ll-profile-info-list a {
color: var(--ll-primary);
text-decoration: none;
}
.ll-profile-info-list a:hover {
text-decoration: underline;
}
.ll-profile-social-links {
display: flex;
gap: 0.5rem;
}
.ll-profile-social-link {
width: 36px;
height: 36px;
border-radius: 50%;
background: var(--ll-bg-secondary);
display: flex;
align-items: center;
justify-content: center;
color: var(--ll-text-muted);
transition: all 0.15s;
}
.ll-profile-social-link:hover {
background: var(--ll-primary);
color: white;
}
.ll-profile-tabs {
display: flex;
border-bottom: 1px solid var(--ll-border);
background: var(--ll-bg);
border-radius: 0.5rem 0.5rem 0 0;
overflow-x: auto;
}
.ll-profile-tab {
padding: 1rem 1.5rem;
background: none;
border: none;
border-bottom: 2px solid transparent;
color: var(--ll-text-muted);
font-size: 0.875rem;
font-weight: 500;
cursor: pointer;
transition: all 0.15s;
white-space: nowrap;
}
.ll-profile-tab:hover {
color: var(--ll-text);
}
.ll-profile-tab-active {
color: var(--ll-primary);
border-bottom-color: var(--ll-primary);
}
.ll-profile-tab-count {
margin-left: 0.5rem;
font-size: 0.75rem;
background: var(--ll-bg-secondary);
padding: 0.125rem 0.5rem;
border-radius: 10px;
}
.ll-profile-activity {
background: var(--ll-bg);
border-radius: 0.5rem;
padding: 1rem;
}
.ll-profile-activity-item {
display: flex;
gap: 1rem;
padding: 1rem 0;
border-bottom: 1px solid var(--ll-border);
}
.ll-profile-activity-item:last-child {
border-bottom: none;
}
.ll-profile-activity-icon {
width: 36px;
height: 36px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.ll-profile-activity-icon-post { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.ll-profile-activity-icon-comment { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.ll-profile-activity-icon-like { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.ll-profile-activity-icon-follow { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.ll-profile-activity-icon-project { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.ll-profile-activity-icon-achievement { background: rgba(234, 179, 8, 0.1); color: #eab308; }
.ll-profile-activity-content {
flex: 1;
}
.ll-profile-activity-content p {
margin: 0 0 0.5rem;
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-profile-activity-image {
max-width: 200px;
border-radius: 0.375rem;
margin-bottom: 0.5rem;
}
.ll-profile-activity-time {
font-size: 0.75rem;
color: var(--ll-text-muted);
}
.ll-profile-activity-load-more {
display: block;
width: 100%;
padding: 0.75rem;
margin-top: 1rem;
background: var(--ll-bg-secondary);
border: none;
border-radius: 0.375rem;
color: var(--ll-text-muted);
font-size: 0.875rem;
cursor: pointer;
transition: background 0.15s;
}
.ll-profile-activity-load-more:hover {
background: var(--ll-border);
}
.ll-profile-activity-empty {
text-align: center;
padding: 2rem;
color: var(--ll-text-muted);
}
/* User Card */
.ll-user-card {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem;
background: var(--ll-bg);
border-radius: 0.5rem;
cursor: pointer;
transition: box-shadow 0.15s;
}
.ll-user-card:hover {
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.ll-user-card-default {
flex-direction: column;
text-align: center;
}
.ll-user-card-avatar {
width: 48px;
height: 48px;
border-radius: 50%;
overflow: hidden;
background: var(--ll-primary);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
flex-shrink: 0;
}
.ll-user-card-default .ll-user-card-avatar {
width: 80px;
height: 80px;
font-size: 1.5rem;
}
.ll-user-card-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.ll-user-card-info {
flex: 1;
min-width: 0;
}
.ll-user-card-name {
display: flex;
align-items: center;
gap: 0.375rem;
font-size: 0.9375rem;
font-weight: 600;
color: var(--ll-text);
margin: 0;
}
.ll-user-card-verified {
color: var(--ll-primary);
}
.ll-user-card-title,
.ll-user-card-location {
font-size: 0.8125rem;
color: var(--ll-text-muted);
margin: 0.125rem 0 0;
}
.ll-user-card-follow {
padding: 0.375rem 1rem;
background: var(--ll-primary);
color: white;
border: none;
border-radius: 0.375rem;
font-size: 0.8125rem;
font-weight: 500;
cursor: pointer;
transition: background 0.15s;
}
.ll-user-card-follow:hover {
background: var(--ll-primary-dark, #4338ca);
}
.ll-user-card-following {
background: var(--ll-bg-secondary);
color: var(--ll-text);
}
.ll-user-card-following:hover {
background: var(--ll-border);
}
/* User List */
.ll-user-list {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.ll-user-list-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 1rem;
}
.ll-user-list-empty,
.ll-user-list-loading {
text-align: center;
padding: 2rem;
color: var(--ll-text-muted);
}
/* Edit Profile Form */
.ll-edit-profile-form {
background: var(--ll-bg);
border-radius: 0.5rem;
padding: 1.5rem;
}
.ll-edit-profile-section {
margin-bottom: 2rem;
padding-bottom: 2rem;
border-bottom: 1px solid var(--ll-border);
}
.ll-edit-profile-section:last-of-type {
border-bottom: none;
}
.ll-edit-profile-section h3 {
font-size: 1rem;
font-weight: 600;
color: var(--ll-text);
margin: 0 0 1rem;
}
.ll-edit-profile-avatar-preview {
width: 100px;
height: 100px;
border-radius: 50%;
overflow: hidden;
background: var(--ll-primary);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
.ll-edit-profile-avatar-preview img {
width: 100%;
height: 100%;
object-fit: cover;
}
.ll-edit-profile-row {
display: flex;
gap: 1rem;
}
.ll-edit-profile-field {
flex: 1;
margin-bottom: 1rem;
}
.ll-edit-profile-field label {
display: block;
font-size: 0.875rem;
font-weight: 500;
color: var(--ll-text);
margin-bottom: 0.375rem;
}
.ll-edit-profile-field input,
.ll-edit-profile-field textarea {
width: 100%;
padding: 0.5rem 0.75rem;
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-edit-profile-field input:focus,
.ll-edit-profile-field textarea:focus {
outline: none;
border-color: var(--ll-primary);
}
.ll-edit-profile-actions {
display: flex;
justify-content: flex-end;
gap: 0.75rem;
margin-top: 1rem;
}
.ll-edit-profile-btn-primary {
padding: 0.625rem 1.5rem;
background: var(--ll-primary);
color: white;
border: none;
border-radius: 0.375rem;
font-size: 0.875rem;
font-weight: 500;
cursor: pointer;
transition: background 0.15s;
}
.ll-edit-profile-btn-primary:hover {
background: var(--ll-primary-dark, #4338ca);
}
.ll-edit-profile-btn-secondary {
padding: 0.625rem 1.5rem;
background: var(--ll-bg);
color: var(--ll-text);
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
font-size: 0.875rem;
cursor: pointer;
transition: background 0.15s;
}
.ll-edit-profile-btn-secondary:hover {
background: var(--ll-bg-secondary);
}
/* Invoice Pages */
.ll-invoice-template {
background: var(--ll-bg);
border-radius: 0.5rem;
overflow: hidden;
}
.ll-invoice-actions {
display: flex;
justify-content: flex-end;
gap: 0.5rem;
padding: 1rem;
background: var(--ll-bg-secondary);
border-bottom: 1px solid var(--ll-border);
}
.ll-invoice-action-btn {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
background: var(--ll-bg);
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
color: var(--ll-text);
font-size: 0.8125rem;
cursor: pointer;
transition: all 0.15s;
}
.ll-invoice-action-btn:hover {
background: var(--ll-bg-secondary);
}
.ll-invoice-action-btn-primary {
background: var(--ll-primary);
border-color: var(--ll-primary);
color: white;
}
.ll-invoice-action-btn-primary:hover {
background: var(--ll-primary-dark, #4338ca);
}
.ll-invoice-document {
padding: 2rem;
}
.ll-invoice-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 2rem;
}
.ll-invoice-logo {
max-height: 48px;
}
.ll-invoice-company {
font-size: 1.5rem;
font-weight: 700;
color: var(--ll-text);
margin: 0;
}
.ll-invoice-meta {
text-align: right;
}
.ll-invoice-title {
font-size: 2rem;
font-weight: 700;
color: var(--ll-text);
margin: 0;
}
.ll-invoice-number {
font-size: 0.875rem;
color: var(--ll-text-muted);
margin-top: 0.25rem;
}
.ll-invoice-status {
display: inline-block;
padding: 0.25rem 0.75rem;
border-radius: 0.25rem;
font-size: 0.75rem;
font-weight: 600;
color: white;
text-transform: uppercase;
margin-top: 0.5rem;
}
.ll-invoice-parties {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 2rem;
margin-bottom: 2rem;
}
.ll-invoice-from h3,
.ll-invoice-to h3 {
font-size: 0.75rem;
font-weight: 600;
color: var(--ll-text-muted);
text-transform: uppercase;
margin: 0 0 0.5rem;
}
.ll-invoice-party-name {
font-weight: 600;
color: var(--ll-text);
margin: 0 0 0.25rem;
}
.ll-invoice-from p,
.ll-invoice-to p {
font-size: 0.875rem;
color: var(--ll-text-muted);
margin: 0;
line-height: 1.6;
}
.ll-invoice-dates {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.ll-invoice-date {
display: flex;
justify-content: space-between;
font-size: 0.875rem;
}
.ll-invoice-date-label {
color: var(--ll-text-muted);
}
.ll-invoice-date-value {
color: var(--ll-text);
font-weight: 500;
}
.ll-invoice-items {
width: 100%;
border-collapse: collapse;
margin-bottom: 2rem;
}
.ll-invoice-items th {
text-align: left;
padding: 0.75rem;
background: var(--ll-bg-secondary);
font-size: 0.75rem;
font-weight: 600;
color: var(--ll-text-muted);
text-transform: uppercase;
}
.ll-invoice-items th:last-child {
text-align: right;
}
.ll-invoice-items td {
padding: 0.75rem;
border-bottom: 1px solid var(--ll-border);
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-invoice-items td:last-child {
text-align: right;
}
.ll-invoice-summary {
display: flex;
justify-content: space-between;
gap: 2rem;
}
.ll-invoice-notes {
flex: 1;
}
.ll-invoice-note,
.ll-invoice-terms,
.ll-invoice-payment {
margin-bottom: 1rem;
}
.ll-invoice-note h4,
.ll-invoice-terms h4,
.ll-invoice-payment h4 {
font-size: 0.75rem;
font-weight: 600;
color: var(--ll-text-muted);
text-transform: uppercase;
margin: 0 0 0.25rem;
}
.ll-invoice-note p,
.ll-invoice-terms p,
.ll-invoice-payment p {
font-size: 0.875rem;
color: var(--ll-text);
margin: 0;
}
.ll-invoice-totals {
width: 250px;
}
.ll-invoice-total-row {
display: flex;
justify-content: space-between;
padding: 0.5rem 0;
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-invoice-grand-total {
border-top: 2px solid var(--ll-border);
margin-top: 0.5rem;
padding-top: 0.75rem;
font-size: 1.125rem;
font-weight: 700;
}
/* Invoice List */
.ll-invoice-list-table {
width: 100%;
border-collapse: collapse;
}
.ll-invoice-list-table th {
text-align: left;
padding: 0.75rem 1rem;
background: var(--ll-bg-secondary);
font-size: 0.75rem;
font-weight: 600;
color: var(--ll-text-muted);
text-transform: uppercase;
}
.ll-invoice-list-sortable {
cursor: pointer;
}
.ll-invoice-list-sortable:hover {
color: var(--ll-text);
}
.ll-invoice-sort-icon {
vertical-align: middle;
margin-left: 0.25rem;
}
.ll-invoice-list-table td {
padding: 0.75rem 1rem;
border-bottom: 1px solid var(--ll-border);
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-invoice-list-table tr {
cursor: pointer;
transition: background 0.15s;
}
.ll-invoice-list-table tr:hover {
background: var(--ll-bg-secondary);
}
.ll-invoice-list-selected {
background: rgba(99, 102, 241, 0.1);
}
.ll-invoice-list-checkbox {
width: 40px;
}
.ll-invoice-list-number {
font-weight: 500;
}
.ll-invoice-list-status {
display: inline-block;
padding: 0.25rem 0.5rem;
border-radius: 0.25rem;
font-size: 0.75rem;
font-weight: 500;
text-transform: capitalize;
}
.ll-invoice-list-status-paid { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.ll-invoice-list-status-pending { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.ll-invoice-list-status-overdue { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.ll-invoice-list-status-draft { background: rgba(107, 114, 128, 0.1); color: #6b7280; }
.ll-invoice-list-status-cancelled { background: rgba(156, 163, 175, 0.1); color: #9ca3af; }
.ll-invoice-list-empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 4rem 2rem;
color: var(--ll-text-muted);
}
/* Invoice Grid */
.ll-invoice-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1rem;
}
.ll-invoice-card {
background: var(--ll-bg);
border: 1px solid var(--ll-border);
border-radius: 0.5rem;
padding: 1rem;
cursor: pointer;
transition: box-shadow 0.15s;
}
.ll-invoice-card:hover {
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.ll-invoice-card-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}
.ll-invoice-card-number {
font-weight: 600;
color: var(--ll-text);
}
.ll-invoice-card-status {
padding: 0.125rem 0.5rem;
border-radius: 0.25rem;
font-size: 0.6875rem;
font-weight: 500;
color: white;
text-transform: capitalize;
}
.ll-invoice-card-client h4 {
font-size: 0.9375rem;
font-weight: 600;
color: var(--ll-text);
margin: 0 0 0.25rem;
}
.ll-invoice-card-client p {
font-size: 0.8125rem;
color: var(--ll-text-muted);
margin: 0;
}
.ll-invoice-card-details {
display: flex;
justify-content: space-between;
margin: 1rem 0;
}
.ll-invoice-card-date span:first-child {
display: block;
font-size: 0.6875rem;
color: var(--ll-text-muted);
text-transform: uppercase;
}
.ll-invoice-card-date span:last-child {
font-size: 0.8125rem;
color: var(--ll-text);
}
.ll-invoice-card-amount {
display: flex;
justify-content: space-between;
padding-top: 1rem;
border-top: 1px solid var(--ll-border);
}
.ll-invoice-card-amount span:first-child {
font-size: 0.8125rem;
color: var(--ll-text-muted);
}
.ll-invoice-card-amount span:last-child {
font-size: 1.125rem;
font-weight: 700;
color: var(--ll-text);
}
/* Invoice Form */
.ll-invoice-form {
background: var(--ll-bg);
border-radius: 0.5rem;
overflow: hidden;
}
.ll-invoice-form-header {
padding: 1rem 1.5rem;
background: var(--ll-bg-secondary);
border-bottom: 1px solid var(--ll-border);
}
.ll-invoice-form-header h2 {
font-size: 1.125rem;
font-weight: 600;
margin: 0;
}
.ll-invoice-form-section {
padding: 1.5rem;
border-bottom: 1px solid var(--ll-border);
}
.ll-invoice-form-section h3 {
font-size: 0.875rem;
font-weight: 600;
color: var(--ll-text);
margin: 0 0 1rem;
}
.ll-invoice-form-row {
display: flex;
gap: 1rem;
}
.ll-invoice-form-field {
flex: 1;
margin-bottom: 1rem;
}
.ll-invoice-form-field label {
display: block;
font-size: 0.8125rem;
font-weight: 500;
color: var(--ll-text);
margin-bottom: 0.375rem;
}
.ll-invoice-form-field input,
.ll-invoice-form-field select,
.ll-invoice-form-field textarea {
width: 100%;
padding: 0.5rem 0.75rem;
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-invoice-form-field input:focus,
.ll-invoice-form-field select:focus,
.ll-invoice-form-field textarea:focus {
outline: none;
border-color: var(--ll-primary);
}
.ll-invoice-form-items {
width: 100%;
border-collapse: collapse;
margin-bottom: 1rem;
}
.ll-invoice-form-items th {
text-align: left;
padding: 0.5rem;
font-size: 0.75rem;
font-weight: 600;
color: var(--ll-text-muted);
border-bottom: 1px solid var(--ll-border);
}
.ll-invoice-form-items td {
padding: 0.5rem;
}
.ll-invoice-form-items input {
width: 100%;
padding: 0.5rem;
border: 1px solid var(--ll-border);
border-radius: 0.25rem;
font-size: 0.875rem;
}
.ll-invoice-form-item-total {
font-weight: 500;
color: var(--ll-text);
}
.ll-invoice-form-remove-item {
padding: 0.25rem;
background: none;
border: none;
color: var(--ll-text-muted);
cursor: pointer;
}
.ll-invoice-form-remove-item:hover {
color: #ef4444;
}
.ll-invoice-form-add-item {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
background: none;
border: 1px dashed var(--ll-border);
border-radius: 0.375rem;
color: var(--ll-text-muted);
font-size: 0.8125rem;
cursor: pointer;
transition: all 0.15s;
}
.ll-invoice-form-add-item:hover {
border-color: var(--ll-primary);
color: var(--ll-primary);
}
.ll-invoice-form-totals {
padding: 1rem 1.5rem;
background: var(--ll-bg-secondary);
}
.ll-invoice-form-total-row {
display: flex;
justify-content: space-between;
padding: 0.375rem 0;
font-size: 0.875rem;
}
.ll-invoice-form-grand-total {
font-size: 1rem;
font-weight: 700;
border-top: 1px solid var(--ll-border);
padding-top: 0.5rem;
margin-top: 0.25rem;
}
.ll-invoice-form-actions {
display: flex;
justify-content: flex-end;
gap: 0.75rem;
padding: 1rem 1.5rem;
border-top: 1px solid var(--ll-border);
}
.ll-invoice-form-btn-primary {
padding: 0.625rem 1.5rem;
background: var(--ll-primary);
color: white;
border: none;
border-radius: 0.375rem;
font-size: 0.875rem;
font-weight: 500;
cursor: pointer;
}
.ll-invoice-form-btn-primary:hover {
background: var(--ll-primary-dark, #4338ca);
}
.ll-invoice-form-btn-secondary {
padding: 0.625rem 1.5rem;
background: var(--ll-bg);
color: var(--ll-text);
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
font-size: 0.875rem;
cursor: pointer;
}
/* Invoice Stats */
.ll-invoice-stats {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1rem;
}
.ll-invoice-stat {
display: flex;
align-items: center;
gap: 1rem;
padding: 1.25rem;
background: var(--ll-bg);
border-radius: 0.5rem;
border: 1px solid var(--ll-border);
}
.ll-invoice-stat-icon {
width: 48px;
height: 48px;
border-radius: 0.5rem;
display: flex;
align-items: center;
justify-content: center;
}
.ll-invoice-stat-total { background: rgba(99, 102, 241, 0.1); color: #6366f1; }
.ll-invoice-stat-paid { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.ll-invoice-stat-pending { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.ll-invoice-stat-overdue { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.ll-invoice-stat-value {
display: block;
font-size: 1.25rem;
font-weight: 700;
color: var(--ll-text);
}
.ll-invoice-stat-label {
font-size: 0.8125rem;
color: var(--ll-text-muted);
}
/* Search Pages */
.ll-search-layout {
display: flex;
gap: 1.5rem;
}
.ll-search-sidebar {
width: 260px;
flex-shrink: 0;
}
.ll-search-main {
flex: 1;
min-width: 0;
}
.ll-search-box {
position: relative;
}
.ll-search-box-form {
display: flex;
gap: 0.5rem;
}
.ll-search-box-input-wrapper {
flex: 1;
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.625rem 1rem;
background: var(--ll-bg);
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
transition: border-color 0.15s;
}
.ll-search-box-input-wrapper:focus-within {
border-color: var(--ll-primary);
}
.ll-search-box-icon {
color: var(--ll-text-muted);
flex-shrink: 0;
}
.ll-search-box-input {
flex: 1;
border: none;
background: none;
font-size: 0.9375rem;
color: var(--ll-text);
}
.ll-search-box-input:focus {
outline: none;
}
.ll-search-box-spinner {
width: 18px;
height: 18px;
border: 2px solid var(--ll-border);
border-top-color: var(--ll-primary);
border-radius: 50%;
animation: ll-spin 0.8s linear infinite;
}
.ll-search-box-clear {
padding: 0.25rem;
background: none;
border: none;
color: var(--ll-text-muted);
cursor: pointer;
}
.ll-search-box-clear:hover {
color: var(--ll-text);
}
.ll-search-box-button {
padding: 0.625rem 1.5rem;
background: var(--ll-primary);
color: white;
border: none;
border-radius: 0.375rem;
font-size: 0.875rem;
font-weight: 500;
cursor: pointer;
transition: background 0.15s;
}
.ll-search-box-button:hover {
background: var(--ll-primary-dark, #4338ca);
}
.ll-search-box-lg .ll-search-box-input-wrapper {
padding: 0.875rem 1.25rem;
}
.ll-search-box-lg .ll-search-box-input {
font-size: 1rem;
}
.ll-search-box-lg .ll-search-box-button {
padding: 0.875rem 2rem;
}
.ll-search-suggestions {
position: absolute;
top: 100%;
left: 0;
right: 0;
margin-top: 0.5rem;
background: var(--ll-bg);
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
z-index: 100;
overflow: hidden;
}
.ll-search-suggestion {
display: flex;
align-items: center;
gap: 0.75rem;
width: 100%;
padding: 0.625rem 1rem;
background: none;
border: none;
text-align: left;
color: var(--ll-text);
font-size: 0.875rem;
cursor: pointer;
transition: background 0.15s;
}
.ll-search-suggestion:hover {
background: var(--ll-bg-secondary);
}
.ll-search-suggestion svg {
color: var(--ll-text-muted);
}
/* Search Filters */
.ll-search-filters {
background: var(--ll-bg);
border-radius: 0.5rem;
padding: 1rem;
}
.ll-search-filters-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}
.ll-search-filters-header h3 {
font-size: 1rem;
font-weight: 600;
margin: 0;
}
.ll-search-filters-clear {
background: none;
border: none;
color: var(--ll-primary);
font-size: 0.8125rem;
cursor: pointer;
}
.ll-search-filters-clear:hover {
text-decoration: underline;
}
.ll-search-filter-section {
border-bottom: 1px solid var(--ll-border);
padding-bottom: 1rem;
margin-bottom: 1rem;
}
.ll-search-filter-section:last-child {
border-bottom: none;
padding-bottom: 0;
margin-bottom: 0;
}
.ll-search-filter-header {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
padding: 0.5rem 0;
background: none;
border: none;
font-size: 0.875rem;
font-weight: 600;
color: var(--ll-text);
cursor: pointer;
}
.ll-search-filter-toggle {
transition: transform 0.2s;
}
.ll-search-filter-expanded {
transform: rotate(180deg);
}
.ll-search-filter-content {
padding-top: 0.5rem;
}
.ll-search-filter-checkboxes,
.ll-search-filter-radios {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.ll-search-filter-checkbox,
.ll-search-filter-radio {
display: flex;
align-items: center;
gap: 0.5rem;
cursor: pointer;
}
.ll-search-filter-checkbox input,
.ll-search-filter-radio input {
width: 16px;
height: 16px;
}
.ll-search-filter-checkbox-label,
.ll-search-filter-radio-label {
flex: 1;
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-search-filter-count {
font-size: 0.75rem;
color: var(--ll-text-muted);
}
.ll-search-filter-select {
width: 100%;
padding: 0.5rem;
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
font-size: 0.875rem;
color: var(--ll-text);
}
/* Search Results */
.ll-search-results-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
padding-bottom: 1rem;
border-bottom: 1px solid var(--ll-border);
}
.ll-search-results-info {
font-size: 0.875rem;
color: var(--ll-text-muted);
}
.ll-search-results-count {
font-weight: 600;
color: var(--ll-text);
}
.ll-search-results-controls {
display: flex;
align-items: center;
gap: 1rem;
}
.ll-search-results-sort {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
}
.ll-search-results-sort label {
color: var(--ll-text-muted);
}
.ll-search-results-sort select {
padding: 0.375rem 0.5rem;
border: 1px solid var(--ll-border);
border-radius: 0.25rem;
font-size: 0.875rem;
color: var(--ll-text);
}
.ll-search-results-view-toggle {
display: flex;
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
overflow: hidden;
}
.ll-search-view-btn {
padding: 0.5rem;
background: none;
border: none;
color: var(--ll-text-muted);
cursor: pointer;
transition: all 0.15s;
}
.ll-search-view-btn:not(:last-child) {
border-right: 1px solid var(--ll-border);
}
.ll-search-view-btn:hover {
background: var(--ll-bg-secondary);
}
.ll-search-view-btn-active {
background: var(--ll-primary);
color: white;
}
.ll-search-results-list {
display: flex;
flex-direction: column;
gap: 1rem;
}
.ll-search-results-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1rem;
}
.ll-search-result {
display: flex;
gap: 1rem;
padding: 1rem;
background: var(--ll-bg);
border-radius: 0.5rem;
cursor: pointer;
transition: box-shadow 0.15s;
}
.ll-search-result:hover {
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.ll-search-results-grid .ll-search-result {
flex-direction: column;
}
.ll-search-result-image {
width: 120px;
height: 80px;
flex-shrink: 0;
border-radius: 0.375rem;
overflow: hidden;
}
.ll-search-results-grid .ll-search-result-image {
width: 100%;
height: 150px;
}
.ll-search-result-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.ll-search-result-content {
flex: 1;
min-width: 0;
}
.ll-search-result-title {
font-size: 1rem;
font-weight: 600;
color: var(--ll-primary);
margin: 0 0 0.25rem;
}
.ll-search-result-title mark {
background: rgba(99, 102, 241, 0.2);
color: inherit;
}
.ll-search-result-url {
display: block;
font-size: 0.75rem;
color: #22c55e;
margin-bottom: 0.5rem;
}
.ll-search-result-description {
font-size: 0.875rem;
color: var(--ll-text-muted);
margin: 0 0 0.5rem;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.ll-search-result-description mark {
background: rgba(99, 102, 241, 0.2);
color: inherit;
}
.ll-search-result-type {
font-size: 0.6875rem;
padding: 0.125rem 0.5rem;
background: var(--ll-bg-secondary);
border-radius: 0.25rem;
color: var(--ll-text-muted);
text-transform: capitalize;
}
.ll-search-results-empty,
.ll-search-results-loading {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 4rem 2rem;
color: var(--ll-text-muted);
}
.ll-search-results-spinner {
width: 32px;
height: 32px;
border: 3px solid var(--ll-border);
border-top-color: var(--ll-primary);
border-radius: 50%;
animation: ll-spin 0.8s linear infinite;
}
/* Search Pagination */
.ll-search-pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 0.5rem;
margin-top: 2rem;
}
.ll-search-pagination-btn {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
background: var(--ll-bg);
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
color: var(--ll-text);
font-size: 0.875rem;
cursor: pointer;
transition: all 0.15s;
}
.ll-search-pagination-btn:hover:not(:disabled) {
background: var(--ll-bg-secondary);
}
.ll-search-pagination-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.ll-search-pagination-pages {
display: flex;
gap: 0.25rem;
}
.ll-search-pagination-page {
min-width: 36px;
height: 36px;
padding: 0 0.5rem;
background: var(--ll-bg);
border: 1px solid var(--ll-border);
border-radius: 0.375rem;
color: var(--ll-text);
font-size: 0.875rem;
cursor: pointer;
transition: all 0.15s;
}
.ll-search-pagination-page:hover {
background: var(--ll-bg-secondary);
}
.ll-search-pagination-active {
background: var(--ll-primary);
border-color: var(--ll-primary);
color: white;
}
.ll-search-pagination-active:hover {
background: var(--ll-primary);
}
.ll-search-pagination-ellipsis {
display: flex;
align-items: center;
padding: 0 0.25rem;
color: var(--ll-text-muted);
}
/* Search Tabs */
.ll-search-tabs {
display: flex;
border-bottom: 1px solid var(--ll-border);
margin-bottom: 1.5rem;
overflow-x: auto;
}
.ll-search-tab {
padding: 0.75rem 1.25rem;
background: none;
border: none;
border-bottom: 2px solid transparent;
color: var(--ll-text-muted);
font-size: 0.875rem;
font-weight: 500;
cursor: pointer;
transition: all 0.15s;
white-space: nowrap;
}
.ll-search-tab:hover {
color: var(--ll-text);
}
.ll-search-tab-active {
color: var(--ll-primary);
border-bottom-color: var(--ll-primary);
}
.ll-search-tab-count {
margin-left: 0.5rem;
font-size: 0.75rem;
background: var(--ll-bg-secondary);
padding: 0.125rem 0.5rem;
border-radius: 10px;
}
/* Search Users */
.ll-search-users {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.ll-search-users-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 1rem;
}
.ll-search-user {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem;
background: var(--ll-bg);
border-radius: 0.5rem;
cursor: pointer;
transition: box-shadow 0.15s;
}
.ll-search-user:hover {
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.ll-search-user-avatar {
width: 48px;
height: 48px;
border-radius: 50%;
overflow: hidden;
background: var(--ll-primary);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
flex-shrink: 0;
}
.ll-search-user-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.ll-search-user-info {
flex: 1;
min-width: 0;
}
.ll-search-user-name {
font-size: 0.9375rem;
font-weight: 600;
color: var(--ll-text);
margin: 0;
}
.ll-search-user-title {
font-size: 0.8125rem;
color: var(--ll-text-muted);
margin: 0.125rem 0 0;
}
.ll-search-user-location {
display: flex;
align-items: center;
gap: 0.25rem;
font-size: 0.75rem;
color: var(--ll-text-muted);
margin: 0.25rem 0 0;
}
.ll-search-user-follow {
padding: 0.375rem 1rem;
background: var(--ll-primary);
color: white;
border: none;
border-radius: 0.375rem;
font-size: 0.8125rem;
font-weight: 500;
cursor: pointer;
transition: background 0.15s;
}
.ll-search-user-follow:hover {
background: var(--ll-primary-dark, #4338ca);
}
.ll-search-user-following {
background: var(--ll-bg-secondary);
color: var(--ll-text);
}
.ll-search-user-following:hover {
background: var(--ll-border);
}
/* Search Images */
.ll-search-images {
display: grid;
grid-template-columns: repeat(var(--columns, 4), 1fr);
gap: 0.5rem;
}
.ll-search-image {
position: relative;
border-radius: 0.375rem;
overflow: hidden;
cursor: pointer;
}
.ll-search-image img {
width: 100%;
height: 150px;
object-fit: cover;
transition: transform 0.2s;
}
.ll-search-image:hover img {
transform: scale(1.05);
}
.ll-search-image-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 0.5rem;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
color: white;
font-size: 0.75rem;
opacity: 0;
transition: opacity 0.2s;
}
.ll-search-image:hover .ll-search-image-overlay {
opacity: 1;
}
/* Search Videos */
.ll-search-videos-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1rem;
}
.ll-search-video {
cursor: pointer;
}
.ll-search-video-thumbnail {
position: relative;
border-radius: 0.5rem;
overflow: hidden;
margin-bottom: 0.75rem;
}
.ll-search-video-thumbnail img {
width: 100%;
height: 160px;
object-fit: cover;
}
.ll-search-video-duration {
position: absolute;
bottom: 0.5rem;
right: 0.5rem;
padding: 0.125rem 0.375rem;
background: rgba(0, 0, 0, 0.8);
color: white;
font-size: 0.75rem;
border-radius: 0.25rem;
}
.ll-search-video-play {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 48px;
height: 48px;
background: rgba(0, 0, 0, 0.6);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
opacity: 0;
transition: opacity 0.2s;
}
.ll-search-video:hover .ll-search-video-play {
opacity: 1;
}
.ll-search-video-title {
font-size: 0.9375rem;
font-weight: 600;
color: var(--ll-text);
margin: 0 0 0.25rem;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.ll-search-video-channel {
display: block;
font-size: 0.8125rem;
color: var(--ll-text-muted);
}
.ll-search-video-meta {
display: flex;
gap: 0.5rem;
font-size: 0.75rem;
color: var(--ll-text-muted);
}
.ll-search-video-meta span::after {
content: '•';
margin-left: 0.5rem;
}
.ll-search-video-meta span:last-child::after {
content: none;
}
/* =============================================================================
WIDGET COMPONENTS
============================================================================= */
/* -----------------------------------------------------------------------------
Stat Widget
----------------------------------------------------------------------------- */
.ll-stat-widget {
background: var(--ll-card-bg, #fff);
border-radius: var(--ll-card-border-radius, 0.25rem);
padding: 1.25rem;
box-shadow: var(--ll-card-shadow, 0 1px 2px rgba(0, 0, 0, 0.05));
}
.ll-stat-widget--clickable {
cursor: pointer;
transition: box-shadow 0.15s, transform 0.15s;
}
.ll-stat-widget--clickable:hover {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
transform: translateY(-2px);
}
.ll-stat-widget__content {
display: flex;
align-items: center;
gap: 1rem;
}
.ll-stat-widget--icon-right .ll-stat-widget__content {
flex-direction: row-reverse;
}
.ll-stat-widget--icon-right .ll-stat-widget__info {
text-align: left;
}
.ll-stat-widget__icon {
color: var(--ll-stat-icon-color, var(--ll-primary, #2196F3));
opacity: 0.85;
}
.ll-stat-widget__info {
flex: 1;
text-align: right;
}
.ll-stat-widget--icon-right .ll-stat-widget__info {
text-align: left;
}
.ll-stat-widget__value {
font-size: 1.5rem;
font-weight: 600;
margin: 0 0 0.25rem 0;
line-height: 1.2;
}
.ll-stat-widget__title {
font-size: 0.75rem;
text-transform: uppercase;
color: var(--ll-text-muted, #6c757d);
letter-spacing: 0.02em;
}
.ll-stat-widget__trend {
display: flex;
align-items: center;
gap: 0.25rem;
margin-top: 0.75rem;
padding-top: 0.75rem;
border-top: 1px solid var(--ll-border-color, #e9ecef);
font-size: 0.8125rem;
}
.ll-stat-widget__trend--up {
color: var(--ll-success, #4CAF50);
}
.ll-stat-widget__trend--down {
color: var(--ll-danger, #f44336);
}
.ll-stat-widget__trend-label {
color: var(--ll-text-muted, #6c757d);
margin-left: 0.25rem;
}
/* Stat Widget Color Variants */
.ll-stat-widget--primary .ll-stat-widget__icon { color: var(--ll-primary, #2196F3); }
.ll-stat-widget--success .ll-stat-widget__icon { color: var(--ll-success, #4CAF50); }
.ll-stat-widget--danger .ll-stat-widget__icon { color: var(--ll-danger, #f44336); }
.ll-stat-widget--warning .ll-stat-widget__icon { color: var(--ll-warning, #ff9800); }
.ll-stat-widget--info .ll-stat-widget__icon { color: var(--ll-info, #00bcd4); }
.ll-stat-widget--indigo .ll-stat-widget__icon { color: #3f51b5; }
.ll-stat-widget--blue .ll-stat-widget__icon { color: #2196F3; }
.ll-stat-widget--teal .ll-stat-widget__icon { color: #009688; }
.ll-stat-widget--purple .ll-stat-widget__icon { color: #9c27b0; }
.ll-stat-widget--pink .ll-stat-widget__icon { color: #e91e63; }
.ll-stat-widget--orange .ll-stat-widget__icon { color: #ff5722; }
/* Solid Background Variants */
.ll-stat-widget--solid {
color: #fff;
}
.ll-stat-widget--solid .ll-stat-widget__title {
color: rgba(255, 255, 255, 0.85);
}
.ll-stat-widget--solid .ll-stat-widget__icon {
color: rgba(255, 255, 255, 0.75);
}
.ll-stat-widget--solid .ll-stat-widget__trend {
border-top-color: rgba(255, 255, 255, 0.2);
}
.ll-stat-widget--solid.ll-stat-widget--primary { background: var(--ll-primary, #2196F3); }
.ll-stat-widget--solid.ll-stat-widget--success { background: var(--ll-success, #4CAF50); }
.ll-stat-widget--solid.ll-stat-widget--danger { background: var(--ll-danger, #f44336); }
.ll-stat-widget--solid.ll-stat-widget--warning { background: var(--ll-warning, #ff9800); }
.ll-stat-widget--solid.ll-stat-widget--info { background: var(--ll-info, #00bcd4); }
.ll-stat-widget--solid.ll-stat-widget--indigo { background: #3f51b5; }
.ll-stat-widget--solid.ll-stat-widget--blue { background: #2196F3; }
.ll-stat-widget--solid.ll-stat-widget--teal { background: #009688; }
.ll-stat-widget--solid.ll-stat-widget--purple { background: #9c27b0; }
.ll-stat-widget--solid.ll-stat-widget--pink { background: #e91e63; }
.ll-stat-widget--solid.ll-stat-widget--orange { background: #ff5722; }
/* -----------------------------------------------------------------------------
Progress Widget
----------------------------------------------------------------------------- */
.ll-progress-widget {
background: var(--ll-card-bg, #fff);
border-radius: var(--ll-card-border-radius, 0.25rem);
padding: 1.25rem;
box-shadow: var(--ll-card-shadow, 0 1px 2px rgba(0, 0, 0, 0.05));
}
.ll-progress-widget__header {
display: flex;
align-items: flex-start;
justify-content: space-between;
margin-bottom: 1rem;
}
.ll-progress-widget__info {
flex: 1;
}
.ll-progress-widget__title {
font-size: 0.9375rem;
font-weight: 600;
margin: 0 0 0.25rem 0;
}
.ll-progress-widget__subtitle {
color: var(--ll-text-muted, #6c757d);
font-size: 0.8125rem;
}
.ll-progress-widget__icon {
opacity: 0.75;
}
.ll-progress-widget__bar {
background: var(--ll-border-color, #e9ecef);
border-radius: 1rem;
overflow: hidden;
margin-bottom: 0.75rem;
}
.ll-progress-widget__fill {
height: 100%;
border-radius: 1rem;
transition: width 0.6s ease;
}
.ll-progress-widget__footer {
display: flex;
justify-content: space-between;
font-size: 0.8125rem;
color: var(--ll-text-muted, #6c757d);
}
.ll-progress-widget__progress-value {
font-weight: 600;
}
/* Progress Widget Color Variants */
.ll-progress-widget--primary .ll-progress-widget__fill { background: var(--ll-primary, #2196F3); }
.ll-progress-widget--primary .ll-progress-widget__icon { color: var(--ll-primary, #2196F3); }
.ll-progress-widget--success .ll-progress-widget__fill { background: var(--ll-success, #4CAF50); }
.ll-progress-widget--success .ll-progress-widget__icon { color: var(--ll-success, #4CAF50); }
.ll-progress-widget--danger .ll-progress-widget__fill { background: var(--ll-danger, #f44336); }
.ll-progress-widget--danger .ll-progress-widget__icon { color: var(--ll-danger, #f44336); }
.ll-progress-widget--warning .ll-progress-widget__fill { background: var(--ll-warning, #ff9800); }
.ll-progress-widget--warning .ll-progress-widget__icon { color: var(--ll-warning, #ff9800); }
.ll-progress-widget--info .ll-progress-widget__fill { background: var(--ll-info, #00bcd4); }
.ll-progress-widget--info .ll-progress-widget__icon { color: var(--ll-info, #00bcd4); }
.ll-progress-widget--indigo .ll-progress-widget__fill { background: #3f51b5; }
.ll-progress-widget--indigo .ll-progress-widget__icon { color: #3f51b5; }
/* -----------------------------------------------------------------------------
Chart Widget
----------------------------------------------------------------------------- */
.ll-chart-widget {
background: var(--ll-card-bg, #fff);
border-radius: var(--ll-card-border-radius, 0.25rem);
box-shadow: var(--ll-card-shadow, 0 1px 2px rgba(0, 0, 0, 0.05));
overflow: hidden;
}
.ll-chart-widget__header {
padding: 1rem 1.25rem;
border-bottom: 1px solid var(--ll-border-color, #e9ecef);
}
.ll-chart-widget__title {
font-size: 0.9375rem;
font-weight: 600;
margin: 0 0 0.25rem 0;
}
.ll-chart-widget__subtitle {
color: var(--ll-text-muted, #6c757d);
font-size: 0.8125rem;
}
.ll-chart-widget__container {
position: relative;
width: 100%;
}
.ll-chart-widget__svg {
display: block;
}
.ll-chart-widget__svg--sparkline {
vertical-align: middle;
}
.ll-chart-widget__area {
transition: opacity 0.15s;
}
.ll-chart-widget__line {
stroke-linecap: round;
stroke-linejoin: round;
}
.ll-chart-widget__point {
cursor: pointer;
transition: r 0.15s;
}
.ll-chart-widget__bar {
cursor: pointer;
transition: opacity 0.15s;
}
.ll-chart-widget__bar--hovered {
opacity: 0.8;
}
.ll-chart-widget__slice {
cursor: pointer;
transition: opacity 0.15s, transform 0.15s;
transform-origin: center;
}
.ll-chart-widget__slice--hovered {
opacity: 0.85;
}
.ll-chart-widget__tooltip {
position: fixed;
background: rgba(0, 0, 0, 0.85);
color: #fff;
padding: 0.5rem 0.75rem;
border-radius: 0.25rem;
font-size: 0.8125rem;
white-space: nowrap;
pointer-events: none;
z-index: 1070;
}
.ll-chart-widget__footer {
padding: 1rem 1.25rem;
border-top: 1px solid var(--ll-border-color, #e9ecef);
}
/* -----------------------------------------------------------------------------
Content Widget
----------------------------------------------------------------------------- */
.ll-content-widget {
background: var(--ll-card-bg, #fff);
border-radius: var(--ll-card-border-radius, 0.25rem);
box-shadow: var(--ll-card-shadow, 0 1px 2px rgba(0, 0, 0, 0.05));
}
.ll-content-widget__header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 1.25rem;
border-bottom: 1px solid var(--ll-border-color, #e9ecef);
}
.ll-content-widget__title {
font-size: 0.9375rem;
font-weight: 600;
margin: 0;
}
.ll-content-widget__actions {
display: flex;
align-items: center;
gap: 0.5rem;
}
.ll-content-widget__body {
padding: 1.25rem;
}
.ll-content-widget__body--no-padding {
padding: 0;
}
.ll-content-widget__footer {
padding: 1rem 1.25rem;
border-top: 1px solid var(--ll-border-color, #e9ecef);
background: var(--ll-light, #f8f9fa);
}
/* -----------------------------------------------------------------------------
User Widget
----------------------------------------------------------------------------- */
.ll-user-widget {
background: var(--ll-card-bg, #fff);
border-radius: var(--ll-card-border-radius, 0.25rem);
box-shadow: var(--ll-card-shadow, 0 1px 2px rgba(0, 0, 0, 0.05));
overflow: hidden;
}
.ll-user-widget__header {
padding: 2rem 1.25rem;
text-align: center;
color: #fff;
background-size: cover;
background-position: center;
position: relative;
}
.ll-user-widget__header::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: inherit;
opacity: 0.9;
}
.ll-user-widget__header > * {
position: relative;
z-index: 1;
}
/* User Widget Header Color Variants */
.ll-user-widget--primary .ll-user-widget__header { background-color: var(--ll-primary, #2196F3); }
.ll-user-widget--success .ll-user-widget__header { background-color: var(--ll-success, #4CAF50); }
.ll-user-widget--danger .ll-user-widget__header { background-color: var(--ll-danger, #f44336); }
.ll-user-widget--warning .ll-user-widget__header { background-color: var(--ll-warning, #ff9800); }
.ll-user-widget--info .ll-user-widget__header { background-color: var(--ll-info, #00bcd4); }
.ll-user-widget--indigo .ll-user-widget__header { background-color: #3f51b5; }
.ll-user-widget--blue .ll-user-widget__header { background-color: #2196F3; }
.ll-user-widget--teal .ll-user-widget__header { background-color: #009688; }
.ll-user-widget--purple .ll-user-widget__header { background-color: #9c27b0; }
.ll-user-widget--pink .ll-user-widget__header { background-color: #e91e63; }
.ll-user-widget--orange .ll-user-widget__header { background-color: #ff5722; }
.ll-user-widget__avatar-wrapper {
position: relative;
display: inline-block;
margin-bottom: 1rem;
}
.ll-user-widget__avatar {
width: 120px;
height: 120px;
border-radius: 50%;
border: 3px solid rgba(255, 255, 255, 0.5);
object-fit: cover;
}
.ll-user-widget__avatar--placeholder {
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.2);
font-size: 2.5rem;
font-weight: 600;
}
.ll-user-widget__avatar-actions {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
gap: 0.5rem;
opacity: 0;
transition: opacity 0.2s;
}
.ll-user-widget__avatar-wrapper:hover .ll-user-widget__avatar-actions {
opacity: 1;
}
.ll-user-widget__name {
font-size: 1rem;
font-weight: 600;
margin: 0 0 0.25rem 0;
}
.ll-user-widget__role {
opacity: 0.85;
font-size: 0.875rem;
}
.ll-user-widget__social {
display: flex;
justify-content: center;
gap: 0.5rem;
margin-top: 1rem;
}
.ll-user-widget__social-link {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 50%;
border: 2px solid rgba(255, 255, 255, 0.5);
color: #fff;
text-decoration: none;
transition: background 0.15s, border-color 0.15s;
}
.ll-user-widget__social-link:hover {
background: rgba(255, 255, 255, 0.2);
border-color: #fff;
}
.ll-user-widget__details {
padding: 1.25rem;
}
.ll-user-widget__detail {
display: flex;
justify-content: space-between;
padding: 0.5rem 0;
}
.ll-user-widget__detail:not(:last-child) {
border-bottom: 1px solid var(--ll-border-color, #e9ecef);
}
.ll-user-widget__detail-label {
font-weight: 600;
color: var(--ll-text-body, #333);
}
.ll-user-widget__detail-value {
color: var(--ll-text-muted, #6c757d);
}
.ll-user-widget__detail-value a {
color: var(--ll-primary, #2196F3);
text-decoration: none;
}
.ll-user-widget__detail-value a:hover {
text-decoration: underline;
}
/* -----------------------------------------------------------------------------
Message List Widget
----------------------------------------------------------------------------- */
.ll-message-list-widget {
background: var(--ll-card-bg, #fff);
border-radius: var(--ll-card-border-radius, 0.25rem);
box-shadow: var(--ll-card-shadow, 0 1px 2px rgba(0, 0, 0, 0.05));
overflow: hidden;
}
.ll-message-list-widget__header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 1.25rem;
border-bottom: 1px solid var(--ll-border-color, #e9ecef);
}
.ll-message-list-widget__title {
font-size: 0.9375rem;
font-weight: 600;
margin: 0;
}
.ll-message-list-widget__header-extra {
font-size: 0.8125rem;
}
.ll-message-list-widget__chart {
border-bottom: 1px solid var(--ll-border-color, #e9ecef);
}
.ll-message-list-widget__chart .ll-chart-widget {
box-shadow: none;
border-radius: 0;
}
.ll-message-list-widget__tabs {
display: flex;
border-bottom: 1px solid var(--ll-border-color, #e9ecef);
}
.ll-message-list-widget__tab {
flex: 1;
padding: 0.75rem 1rem;
border: none;
background: var(--ll-primary, #26A69A);
color: rgba(255, 255, 255, 0.85);
font-size: 0.75rem;
text-transform: uppercase;
font-weight: 600;
cursor: pointer;
transition: background 0.15s;
}
.ll-message-list-widget__tab:not(:last-child) {
border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.ll-message-list-widget__tab--active {
background: var(--ll-primary-dark, #00897B);
color: #fff;
}
.ll-message-list-widget__tab:hover:not(.ll-message-list-widget__tab--active) {
background: var(--ll-primary-dark, #00897B);
}
.ll-message-list-widget__list {
padding: 1rem 1.25rem;
}
.ll-message-list-widget__item {
display: flex;
gap: 0.75rem;
padding: 0.75rem 0;
}
.ll-message-list-widget__item:not(:last-child) {
border-bottom: 1px solid var(--ll-border-color, #e9ecef);
}
.ll-message-list-widget__item--clickable {
cursor: pointer;
transition: background 0.15s;
margin: 0 -1.25rem;
padding-left: 1.25rem;
padding-right: 1.25rem;
}
.ll-message-list-widget__item--clickable:hover {
background: var(--ll-light, #f8f9fa);
}
.ll-message-list-widget__avatar-container {
position: relative;
flex-shrink: 0;
}
.ll-message-list-widget__avatar {
width: 36px;
height: 36px;
border-radius: 50%;
object-fit: cover;
}
.ll-message-list-widget__avatar--placeholder {
display: flex;
align-items: center;
justify-content: center;
background: var(--ll-primary, #2196F3);
color: #fff;
font-size: 0.875rem;
font-weight: 600;
}
.ll-message-list-widget__badge {
position: absolute;
top: -4px;
right: -4px;
min-width: 18px;
height: 18px;
padding: 0 5px;
border-radius: 9px;
background: var(--ll-danger, #f44336);
color: #fff;
font-size: 0.6875rem;
font-weight: 600;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid #fff;
}
.ll-message-list-widget__status {
position: absolute;
bottom: 0;
right: 0;
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--ll-text-muted, #6c757d);
border: 2px solid #fff;
}
.ll-message-list-widget__status--online {
background: var(--ll-success, #4CAF50);
}
.ll-message-list-widget__content {
flex: 1;
min-width: 0;
}
.ll-message-list-widget__meta {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.25rem;
}
.ll-message-list-widget__name {
font-weight: 600;
color: var(--ll-primary, #2196F3);
text-decoration: none;
}
.ll-message-list-widget__name:hover {
text-decoration: underline;
}
.ll-message-list-widget__time {
font-size: 0.75rem;
color: var(--ll-text-muted, #6c757d);
}
.ll-message-list-widget__message {
margin: 0;
font-size: 0.875rem;
color: var(--ll-text-muted, #6c757d);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* -----------------------------------------------------------------------------
Quick Stats Grid
----------------------------------------------------------------------------- */
.ll-quick-stats {
display: grid;
gap: 1rem;
}
.ll-quick-stats--cols-2 {
grid-template-columns: repeat(2, 1fr);
}
.ll-quick-stats--cols-3 {
grid-template-columns: repeat(3, 1fr);
}
.ll-quick-stats--cols-4 {
grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1200px) {
.ll-quick-stats--cols-4 {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.ll-quick-stats--cols-3,
.ll-quick-stats--cols-4 {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 576px) {
.ll-quick-stats--cols-2,
.ll-quick-stats--cols-3,
.ll-quick-stats--cols-4 {
grid-template-columns: 1fr;
}
}
/* -----------------------------------------------------------------------------
Form Validation States
----------------------------------------------------------------------------- */
/* Valid state for form controls */
.form-control.is-valid {
border-color: var(--bs-success, #198754);
padding-right: calc(1.5em + 0.75rem);
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right calc(0.375em + 0.1875rem) center;
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-control.is-valid:focus {
border-color: var(--bs-success, #198754);
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
/* Valid state for select */
.form-select.is-valid {
border-color: var(--bs-success, #198754);
}
.form-select.is-valid:focus {
border-color: var(--bs-success, #198754);
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
/* Valid state for checkboxes and radios */
.form-check-input.is-valid {
border-color: var(--bs-success, #198754);
}
.form-check-input.is-valid:checked {
background-color: var(--bs-success, #198754);
border-color: var(--bs-success, #198754);
}
.form-check-input.is-valid:focus {
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.form-check-input.is-valid ~ .form-check-label {
color: var(--bs-success, #198754);
}
/* Valid feedback text */
.valid-feedback {
display: none;
width: 100%;
margin-top: 0.25rem;
font-size: 0.875em;
color: var(--bs-success, #198754);
}
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
display: block;
}
/* Ensure feedback shows when sibling is valid */
.form-control.is-valid ~ .valid-feedback,
.form-select.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-feedback {
display: block;
}
/* Address autocomplete dropdown */
.ll-address-suggestions {
position: absolute;
z-index: 1050;
width: 100%;
max-height: 300px;
overflow-y: auto;
background: var(--ll-surface, #fff);
border: 1px solid var(--ll-border, #ddd);
border-radius: 0.375rem;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.ll-address-suggestion {
padding: 0.5rem 1rem;
cursor: pointer;
border-bottom: 1px solid var(--ll-border, #eee);
}
.ll-address-suggestion:last-child {
border-bottom: none;
}
.ll-address-suggestion:hover,
.ll-address-suggestion:focus {
background: var(--ll-light, #f5f5f5);
}
.ll-address-suggestion__main {
font-weight: 500;
}
.ll-address-suggestion__secondary {
font-size: 0.875em;
color: var(--ll-text-muted, #6c757d);
}
/* Password strength indicator */
.ll-password-strength {
display: flex;
gap: 0.25rem;
margin-top: 0.5rem;
}
.ll-password-strength__bar {
flex: 1;
height: 4px;
background: var(--ll-border, #ddd);
border-radius: 2px;
transition: background-color 0.2s;
}
.ll-password-strength--weak .ll-password-strength__bar:nth-child(1) {
background: var(--bs-danger, #dc3545);
}
.ll-password-strength--fair .ll-password-strength__bar:nth-child(-n+2) {
background: var(--bs-warning, #ffc107);
}
.ll-password-strength--good .ll-password-strength__bar:nth-child(-n+3) {
background: var(--bs-info, #0dcaf0);
}
.ll-password-strength--strong .ll-password-strength__bar:nth-child(-n+4) {
background: var(--bs-success, #198754);
}
.ll-password-strength--very-strong .ll-password-strength__bar {
background: var(--bs-success, #198754);
}
.ll-password-strength__label {
font-size: 0.75rem;
margin-top: 0.25rem;
color: var(--ll-text-muted, #6c757d);
}