/*
 * SharedDrive Theme - Indigo/Purple Light Theme
 * Original SharedDrive Design Recreation
 * Clean, Minimal & Professional
 */

/* ==================== CSS Variables ==================== */
:root {
    /* Primary Colors */
    --primary: #818cf8;
    --primary-hover: #6366f1;
    --primary-light: #c7d2fe;
    --primary-dark: #4f46e5;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-secondary: #f1f5f9;
    
    /* Text Colors */
    --text-dark: #4b5563;
    --text-medium: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    
    /* Accent Colors */
    --success: #22c55e;
    --danger: #f87171;
    --warning: #fbbf24;
    --info: #38bdf8;
    
    /* Border & Shadow */
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Dark Mode Colors */
    --dark-bg-primary: #202124;
    --dark-bg-secondary: #303134;
    --dark-bg-card: #444242;
    --dark-text-primary: #e5e7eb;
    --dark-text-secondary: #9ca3af;
}

/* ==================== Base Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    padding-top: 70px;
}

body.dark-mode {
    background-color: var(--dark-bg-primary);
    color: var(--dark-text-primary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== Typography ==================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.text-primary { color: var(--primary) !important; }
.text-indigo { color: var(--primary) !important; }
.text-gray-500 { color: var(--text-medium) !important; }
.text-gray-600 { color: var(--text-dark) !important; }

.tracking-widest { letter-spacing: 0.1em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-wide { letter-spacing: 0.025em; }

/* ==================== Navbar ==================== */
.navbar {
    background-color: var(--bg-white) !important;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark) !important;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: capitalize;
}

.navbar-brand i {
    color: var(--primary);
}

.navbar-brand img {
    height: 36px;
    width: auto;
}

.navbar-dark .navbar-nav .nav-link,
.navbar .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 8px 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar .nav-link:hover {
    color: var(--primary) !important;
}

.navbar-toggler {
    border-color: var(--border-color) !important;
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2875, 85, 99, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Navbar Login Button */
.navbar .nav-link.btn-login,
.navbar .btn-primary-pill {
    background-color: var(--primary);
    color: var(--text-white) !important;
    padding: 8px 24px !important;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.navbar .nav-link.btn-login:hover,
.navbar .btn-primary-pill:hover {
    opacity: 0.8;
    color: var(--text-white) !important;
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    margin-top: 8px;
}

.dropdown-item {
    color: var(--text-dark);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--bg-secondary);
    color: var(--primary);
}

.dropdown-item i {
    color: var(--primary);
    margin-right: 8px;
    width: 16px;
}

.dropdown-divider {
    border-color: var(--border-color);
}

/* ==================== Buttons ==================== */
.btn {
    font-weight: 500;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--text-white) !important;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    opacity: 0.9;
    transform: scale(0.98);
}

.btn-primary-pill {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 10px 40px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.btn-primary-pill:hover {
    opacity: 0.8;
    color: var(--text-white);
}

.btn-outline-primary {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--text-white);
    transform: scale(0.95);
}

.btn-success {
    background-color: var(--success) !important;
    border-color: var(--success) !important;
    color: var(--text-white) !important;
}

.btn-success:hover {
    opacity: 0.9;
}

.btn-danger {
    background-color: var(--danger) !important;
    border-color: var(--danger) !important;
    color: var(--text-white) !important;
}

.btn-info {
    background-color: var(--info) !important;
    border-color: var(--info) !important;
    color: var(--text-white) !important;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* ==================== Cards ==================== */
.card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 24px;
}

.card-header h1,
.card-header h2,
.card-header h3,
.card-header h4,
.card-header h5 {
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
}

.card-body {
    padding: 24px;
}

/* Dark mode cards */
body.dark-mode .card {
    background-color: var(--dark-bg-secondary);
    border-color: var(--dark-bg-card);
}

body.dark-mode .card-header {
    background-color: var(--dark-bg-card);
    border-color: var(--dark-bg-card);
}

/* ==================== Forms ==================== */
.form-control {
    background-color: var(--bg-white) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-full);
    color: var(--text-medium) !important;
    padding: 12px 20px;
    box-shadow: var(--shadow-inner);
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.2) !important;
    outline: none;
}

.form-control::placeholder {
    color: var(--text-light) !important;
}

.input-group {
    position: relative;
}

.input-group .form-control {
    padding-right: 40px;
}

.input-group .input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    z-index: 10;
}

.input-group-text {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-medium);
    border-radius: var(--radius-md);
}

/* ==================== Tables ==================== */
.table {
    color: var(--text-dark);
    margin-bottom: 0;
}

.table thead th {
    background-color: var(--bg-light);
    border-bottom: 2px solid var(--border-color);
    color: var(--text-medium);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    padding: 14px 16px;
}

.table td {
    border-color: var(--border-color);
    padding: 14px 16px;
    vertical-align: middle;
}

.table tbody tr {
    transition: background 0.2s ease;
}

.table tbody tr:hover {
    background-color: var(--bg-light);
}

.table-hover tbody tr:hover {
    background-color: rgba(129, 140, 248, 0.05);
}

/* Dark mode table */
body.dark-mode .table {
    color: var(--dark-text-primary);
}

body.dark-mode .table thead th {
    background-color: var(--dark-bg-card);
    border-color: var(--dark-bg-card);
    color: var(--dark-text-secondary);
}

body.dark-mode .table td {
    border-color: var(--dark-bg-card);
}

/* ==================== Footer ==================== */
footer {
    background-image: url('/content/assets/wave.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: auto;
}

footer .footer-content {
    text-align: center;
    padding-bottom: 20px;
}

footer p,
footer a {
    color: var(--text-white);
    font-size: 0.9rem;
    letter-spacing: 0.025em;
}

footer a:hover {
    color: var(--text-white);
    opacity: 0.8;
}

footer .heart-icon {
    color: #fecaca;
    margin: 0 4px;
}

/* Fallback footer without wave */
.footer-simple {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 24px 0;
    text-align: center;
}

.footer-simple p,
.footer-simple a {
    color: var(--text-white);
}

/* ==================== Hero Section ==================== */
.hero-section {
    text-align: center;
    padding: 40px 20px;
}

.hero-section .hero-tagline {
    font-size: 1.875rem;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.hero-section .hero-subtitle {
    font-size: 1.875rem;
    color: var(--text-medium);
    letter-spacing: 0.05em;
}

.hero-section p {
    font-size: 1.25rem;
    color: var(--primary);
    letter-spacing: 0.1em;
    line-height: 2;
    margin: 24px 0;
}

.hero-section .hero-description {
    font-size: 1.25rem;
    color: var(--text-medium);
    letter-spacing: 0.1em;
    line-height: 2;
}

.hero-image {
    max-width: 400px;
    margin: 0 auto;
}

/* ==================== File Page ==================== */
.file-info-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
}

.file-info-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-info-header h1 {
    color: var(--text-white);
    font-size: 1.25rem;
    margin: 0;
}

.file-info-header i {
    color: var(--text-white);
    font-size: 1.5rem;
}

.file-detail-row {
    display: flex;
    border-bottom: 2px dashed var(--border-color);
    padding: 12px 20px;
}

.file-detail-row:last-child {
    border-bottom: none;
}

.file-detail-label {
    color: var(--text-medium);
    text-transform: capitalize;
    min-width: 100px;
}

.file-detail-separator {
    color: var(--text-medium);
    margin: 0 8px;
}

.file-detail-value {
    color: var(--primary);
}

/* Download Section */
.download-section {
    text-align: center;
    padding: 24px;
}

.download-btn {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 14px 48px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
    transition: all 0.2s ease;
    margin: 8px;
}

.download-btn:hover {
    opacity: 0.8;
    color: var(--text-white);
    transform: scale(0.98);
}

.download-btn i {
    font-size: 1.25rem;
}

/* Mirror Links */
.mirror-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 16px;
}

.mirror-link {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.mirror-link:hover {
    background-color: var(--primary);
    color: var(--text-white);
    transform: scale(0.95);
}

/* ==================== Login Page ==================== */
.auth-container {
    max-width: 400px;
    margin: 40px auto;
    padding: 0 20px;
}

.auth-card {
    text-align: center;
}

.auth-card .auth-icon {
    width: 96px;
    height: auto;
    margin: 0 auto 16px;
}

.auth-card .auth-title {
    color: var(--text-dark);
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.auth-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
}

.auth-divider span {
    flex: 0 0 33%;
    height: 1px;
    background-color: var(--border-color);
}

.auth-divider .divider-text {
    color: var(--text-medium);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    padding: 0 24px;
    background: none;
    height: auto;
}

.google-login-btn {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 12px 40px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.google-login-btn:hover {
    opacity: 0.8;
    color: var(--text-white);
}

/* ==================== Loading Spinner ==================== */
.loading-spinner {
    border: 8px solid var(--border-color);
    border-top-color: var(--primary);
    border-bottom-color: var(--primary);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    animation: spin 1s linear infinite;
    margin: 0 auto 32px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    color: var(--text-medium);
    font-size: 1.25rem;
    text-align: center;
}

/* ==================== Error Section ==================== */
.error-section {
    text-align: center;
    padding: 60px 20px;
}

.error-section .error-icon {
    color: var(--danger);
    font-size: 3rem;
    margin-bottom: 24px;
}

.error-section h2 {
    color: var(--text-dark);
    font-size: 1.25rem;
    letter-spacing: 0.025em;
    margin-bottom: 8px;
}

.error-section p {
    color: var(--text-medium);
    letter-spacing: 0.025em;
}

/* ==================== Alert Messages ==================== */
.alert {
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 16px;
}

.alert-danger {
    background-color: rgba(248, 113, 113, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
}

.alert-success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-warning {
    background-color: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--warning);
    color: #b45309;
}

/* ==================== Snackbar ==================== */
#snackbar {
    visibility: hidden;
    min-width: 280px;
    background-color: var(--text-dark);
    color: var(--text-white);
    text-align: center;
    border-radius: var(--radius-md);
    padding: 16px 24px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 0.95rem;
    box-shadow: var(--shadow-lg);
}

#snackbar.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from { bottom: 0; opacity: 0; }
    to { bottom: 30px; opacity: 1; }
}

@keyframes fadeout {
    from { bottom: 30px; opacity: 1; }
    to { bottom: 0; opacity: 0; }
}

/* ==================== Disclaimer ==================== */
.disclaimer {
    background-color: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 0.85rem;
    color: var(--text-medium);
}

.disclaimer strong {
    color: var(--danger);
}

.disclaimer i {
    color: var(--danger);
    margin-right: 8px;
}

/* ==================== Stats Cards ==================== */
.stat-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--text-white);
    font-size: 1.5rem;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-card .stat-label {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* ==================== File List ==================== */
.file-list-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.file-list-item:hover {
    border-color: var(--primary);
    background-color: rgba(129, 140, 248, 0.05);
}

.file-list-item .file-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--text-white);
    font-size: 1.2rem;
}

.file-list-item .file-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.file-list-item .file-meta {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ==================== Badge Styles ==================== */
.badge {
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background-color: var(--primary);
    color: var(--text-white);
}

.badge-success {
    background-color: var(--success);
    color: var(--text-white);
}

.badge-danger {
    background-color: var(--danger);
    color: var(--text-white);
}

.badge-warning {
    background-color: var(--warning);
    color: #1f2937;
}

/* ==================== Pagination ==================== */
.pagination {
    justify-content: center;
    margin-top: 24px;
}

.page-link {
    color: var(--primary);
    background-color: var(--bg-white);
    border-color: var(--border-color);
    padding: 10px 16px;
    margin: 0 4px;
    border-radius: var(--radius-md) !important;
}

.page-link:hover {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* ==================== Video Player ==================== */
.play-video-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-white);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.play-video-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(129, 140, 248, 0.4);
    color: var(--text-white);
}

/* ==================== Copy Button ==================== */
.copy-btn {
    background-color: var(--primary);
    color: var(--text-white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    opacity: 0.8;
}

.copy-btn.copied {
    background-color: var(--success);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .card-body {
        padding: 16px;
    }
    
    .hero-section {
        padding: 24px 16px;
    }
    
    .hero-section .hero-tagline,
    .hero-section .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .download-btn {
        width: 100%;
        margin: 8px 0;
    }
    
    .table td, .table th {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    footer {
        height: 180px;
    }
    
    .auth-container {
        margin: 20px auto;
    }
    
    .mirror-links {
        flex-direction: column;
    }
    
    .mirror-link {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .card-header h1,
    .card-header h2 {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .hero-section .hero-tagline,
    .hero-section .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* ==================== Custom Scrollbar ==================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

/* ==================== Utility Classes ==================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }

.rounded-full { border-radius: var(--radius-full); }
.rounded-lg { border-radius: var(--radius-lg); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }

.transition { transition: all 0.2s ease; }

/* Flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }

/* Container */
.container {
    max-width: 1200px;
}
