/* LandLens Property Tracker Styles */

/* ===== GSAP ANIMATION INITIAL STATES ===== */
/* Hide elements initially to prevent FOUC (Flash of Unstyled Content) */
/* CSS animation fallback ensures visibility even if GSAP fails to load */
.ll-tracker-hero,
.ll-credits-info-bar,
.ll-how-it-works-wizard,
.ll-add-property-section,
.ll-properties-section,
.ll-alerts-section,
.ll-login-prompt {
    opacity: 0;
    animation: llCssFadeIn 0.5s ease-out forwards;
}

.ll-tracker-hero { animation-delay: 0.1s; }
.ll-credits-info-bar { animation-delay: 0.2s; }
.ll-how-it-works-wizard { animation-delay: 0.3s; }
.ll-add-property-section { animation-delay: 0.5s; }
.ll-properties-section { animation-delay: 0.6s; }
.ll-alerts-section { animation-delay: 0.7s; }
.ll-login-prompt { animation-delay: 0.2s; }

.ll-tracker-step,
.ll-tracker-line,
.ll-property-card {
    opacity: 0;
    animation: llCssFadeIn 0.4s ease-out forwards;
    animation-delay: 0.6s;
}

@keyframes llCssFadeIn {
    to { opacity: 1; }
}

/* ===== HERO SECTION ===== */
.ll-tracker-hero {
    position: relative;
    background: linear-gradient(135deg, #ff6725 0%, #ff8952 100%);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.ll-tracker-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ll-tracker-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    animation: heroGlow 8s ease-in-out infinite;
}

.ll-tracker-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

@keyframes heroGlow {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.6; }
    50% { transform: scale(1.2) translateY(-20px); opacity: 0.8; }
}

.ll-tracker-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.ll-tracker-hero-left {
    flex: 1;
}

.ll-tracker-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.ll-tracker-badge svg {
    width: 18px;
    height: 18px;
}

.ll-tracker-hero h1 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.75rem 0;
}

.ll-tracker-hero h1 span {
    opacity: 0.9;
}

.ll-tracker-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin: 0;
    max-width: 500px;
}

.ll-tracker-stats {
    display: flex;
    gap: 1.5rem;
}

.ll-tracker-stat {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
}

.ll-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.ll-stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== CREDITS INFO BAR ===== */
.ll-credits-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 103, 37, 0.08);
    border: 1px solid rgba(255, 103, 37, 0.15);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.ll-credits-info-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-secondary);
}

.ll-credits-info-left svg {
    width: 24px;
    height: 24px;
    color: #ff6725;
}

.ll-credits-info-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ll-history-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ll-history-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #1f2937;
}

.ll-history-btn svg {
    width: 16px;
    height: 16px;
}

.ll-add-credits-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ff6725;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ll-add-credits-btn:hover {
    background: white;
    color: #ff6725;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 103, 37, 0.25);
}

.ll-add-credits-btn svg {
    width: 16px;
    height: 16px;
}

/* ===== HOW IT WORKS - WIZARD STYLE ===== */
.ll-how-it-works-wizard {
    background: rgba(252, 252, 252, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid var(--color-stroke-2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.ll-how-it-works-wizard h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 0 0 1.75rem 0;
    text-align: center;
}

.ll-tracker-progress {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.ll-tracker-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.ll-tracker-step-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6725 0%, #ff8952 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(255, 103, 37, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ll-tracker-step-circle svg {
    width: 24px;
    height: 24px;
}

.ll-tracker-step:hover .ll-tracker-step-circle {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(255, 103, 37, 0.45);
}

.ll-tracker-step-content {
    text-align: center;
    max-width: 100px;
}

.ll-tracker-step-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.ll-tracker-step-desc {
    display: block;
    font-size: 0.75rem;
    color: rgba(26, 26, 28, 0.5);
    line-height: 1.3;
}

.ll-tracker-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 103, 37, 0.3) 0%, rgba(255, 103, 37, 0.15) 100%);
    margin: 26px 0.75rem 0 0.75rem;
    max-width: 80px;
    min-width: 30px;
    border-radius: 1px;
    position: relative;
}

.ll-tracker-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #ff6725, #ff8952);
    border-radius: 1px;
    opacity: 0.4;
}

/* Legacy support - hide old styles */
.ll-how-it-works {
    display: none;
}

.ll-steps-grid {
    display: none;
}

.ll-step-card {
    display: none;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 1rem;
}

.ll-step-icon svg {
    width: 24px;
    height: 24px;
    color: #ff6725;
}

.ll-step-card h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 0 0 0.5rem 0;
}

.ll-step-card p {
    font-size: 0.8rem;
    color: var(--color-secondary);
    opacity: 0.7;
    margin: 0;
    line-height: 1.4;
}

/* ===== ADD PROPERTY SECTION ===== */
.ll-add-property-section {
    text-align: center;
    margin-bottom: 2rem;
}

.ll-add-property-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ff6725, #ff8952) !important;
    color: white !important;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: url(../../dashboard/images/icon/pointer.svg), pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 103, 37, 0.3);
    text-decoration: none !important;
}

.ll-add-property-btn:hover,
.ll-add-property-btn:focus,
.ll-add-property-btn:active,
.ll-add-property-btn:visited {
    color: white !important;
    background: linear-gradient(135deg, #e55a1f, #ff6725) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 103, 37, 0.4);
    text-decoration: none !important;
}

.ll-add-property-btn svg {
    width: 20px;
    height: 20px;
}

/* ===== PROPERTIES SECTION ===== */
.ll-properties-section {
    margin-bottom: 2rem;
}

.ll-properties-section .ll-page-header {
    margin-bottom: 1.5rem;
}

.ll-properties-section .ll-page-title h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 0;
}

.ll-properties-section .ll-page-title p {
    font-size: 0.875rem;
    color: var(--color-secondary);
    opacity: 0.6;
    margin: 0.25rem 0 0 0;
}

.ll-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.ll-section-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 0;
}

.ll-property-count {
    font-size: 0.875rem;
    color: var(--color-secondary);
    opacity: 0.6;
}

/* ===== SECTION DIVIDER ===== */
.ll-section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ll-section-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 26, 28, 0.08), transparent);
}

.ll-section-divider-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 103, 37, 0.06);
    border-radius: 9999px;
    color: #ff6725;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.ll-section-divider-label svg {
    width: 1rem;
    height: 1rem;
}

/* ===== FILTERS CARD ===== */
.ll-filters-card {
    background: rgba(252, 252, 252, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid var(--color-stroke-2);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.ll-filters {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
}

.ll-filter-search {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.ll-filter-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--color-secondary);
    opacity: 0.4;
    pointer-events: none;
}

.ll-filter-search-input {
    width: 100%;
    padding: 0.625rem 0.875rem 0.625rem 2.5rem;
    background: white;
    border: 1px solid var(--color-stroke-2);
    border-radius: 10px;
    font-size: 0.875rem;
    color: var(--color-secondary);
    transition: all 0.2s ease;
}

.ll-filter-search-input:focus {
    outline: none;
    border-color: var(--color-primary-300);
    box-shadow: 0 0 0 3px rgba(255, 103, 37, 0.1);
}

.ll-filter-search-input::placeholder {
    color: var(--color-secondary);
    opacity: 0.4;
}

.ll-filter-select {
    padding: 0.625rem 2rem 0.625rem 0.875rem;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%231a1a1c'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E") no-repeat right 0.75rem center;
    background-size: 16px;
    border: 1px solid var(--color-stroke-2);
    border-radius: 10px;
    font-size: 0.875rem;
    color: var(--color-secondary);
    cursor: url(../../dashboard/images/icon/pointer.svg), pointer;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.ll-filter-select:focus {
    outline: none;
    border-color: var(--color-primary-300);
    box-shadow: 0 0 0 3px rgba(255, 103, 37, 0.1);
}

.ll-view-toggle {
    display: flex;
    background: white;
    border: 1px solid var(--color-stroke-2);
    border-radius: 10px;
    overflow: hidden;
}

.ll-view-toggle-btn {
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    color: var(--color-secondary);
    opacity: 0.4;
    cursor: url(../../dashboard/images/icon/pointer.svg), pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ll-view-toggle-btn:first-child {
    border-right: 1px solid var(--color-stroke-2);
}

.ll-view-toggle-btn svg {
    width: 18px;
    height: 18px;
}

.ll-view-toggle-btn:hover {
    opacity: 0.7;
}

.ll-view-toggle-btn.active {
    background: var(--color-primary-50);
    color: var(--color-primary-500);
    opacity: 1;
}

/* Property Tracker card - taller for more map visibility */
#propertiesGrid .ll-project-card {
    height: 520px;
}

/* Actions row: buttons left, status right */
#propertiesGrid .ll-project-actions {
    justify-content: space-between;
}

.ll-project-actions-left {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ===== TRACKER STATUS BADGE ===== */
.ll-tracker-status {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ll-tracker-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Active / Monitoring */
.ll-tracker-status-active {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.ll-tracker-status-active .ll-tracker-status-dot {
    background: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    animation: trackerPulse 2s ease-in-out infinite;
}

/* Paused */
.ll-tracker-status-paused {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.ll-tracker-status-paused .ll-tracker-status-dot {
    background: #9ca3af;
}

/* Low Credits / Warning */
.ll-tracker-status-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.ll-tracker-status-warning .ll-tracker-status-dot {
    background: #f59e0b;
    animation: trackerPulse 1.5s ease-in-out infinite;
}

@keyframes trackerPulse {
    0%, 100% { box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2); }
    50% { box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1); }
}

/* Property Tracker specific info rows */
.ll-tracker-info {
    margin-bottom: 0.5rem;
}

.ll-tracker-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.375rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ll-tracker-info-row:last-child {
    border-bottom: none;
}

.ll-tracker-label {
    font-size: 0.8125rem;
    color: var(--color-secondary);
    opacity: 0.6;
}

.ll-tracker-value {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-secondary);
    text-align: right;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===== PROPERTY CARD ===== */
.ll-property-card {
    background: rgba(252, 252, 252, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid var(--color-stroke-2);
    border-radius: 20px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ll-property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 103, 37, 0.12);
    border-color: rgba(255, 103, 37, 0.2);
}

.ll-property-card.paused {
    opacity: 0.7;
}

.ll-property-card.credits-paused {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(254, 242, 242, 0.5);
}

.ll-property-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.ll-property-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 0 0 0.25rem 0;
}

.ll-property-location {
    font-size: 0.875rem;
    color: var(--color-secondary);
    opacity: 0.6;
    margin: 0;
}

.ll-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.ll-status-badge.active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.ll-status-badge.paused {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.ll-status-badge.credits-issue {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.ll-property-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ll-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-secondary);
}

.ll-detail-item svg {
    width: 16px;
    height: 16px;
    color: #ff6725;
    flex-shrink: 0;
}

.ll-detail-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ll-property-billing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-stroke-2);
    font-size: 0.75rem;
    color: var(--color-secondary);
    opacity: 0.6;
}

.ll-property-billing svg {
    width: 14px;
    height: 14px;
}

/* ===== TRACKER INFO (for project card style) ===== */
.ll-tracker-info {
    background: var(--color-background-2);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 0.875rem;
}

.ll-tracker-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.375rem 0;
}

.ll-tracker-info-row:not(:last-child) {
    border-bottom: 1px solid var(--color-stroke-2);
}

.ll-tracker-label {
    font-size: 0.75rem;
    color: rgba(26, 26, 28, 0.5);
    font-weight: 500;
}

.ll-tracker-value {
    font-size: 0.8125rem;
    color: var(--color-secondary);
    font-weight: 500;
    max-width: 60%;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== EMPTY STATE ===== */
.ll-empty-state {
    position: relative;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(252, 252, 252, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid var(--color-stroke-2);
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}

.ll-empty-state-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 103, 37, 0.08), transparent 60%);
    pointer-events: none;
}

.ll-empty-icon,
.ll-empty-state-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 103, 37, 0.15), rgba(255, 137, 82, 0.1));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 32px rgba(255, 103, 37, 0.15);
}

.ll-empty-icon svg,
.ll-empty-state-icon svg {
    width: 40px;
    height: 40px;
    color: #ff6725;
}

.ll-empty-state h3,
.ll-empty-state-title {
    position: relative;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 0 0 0.75rem 0;
}

.ll-empty-state p,
.ll-empty-state-text {
    position: relative;
    color: var(--color-secondary);
    opacity: 0.6;
    margin: 0 0 1.5rem 0;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ll-empty-state-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #FF6725, #e55a1f);
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 103, 37, 0.3);
}

.ll-empty-state-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 103, 37, 0.4);
    color: white;
}

.ll-empty-state-btn svg {
    width: 20px;
    height: 20px;
}

.ll-empty-state-helper {
    position: relative;
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--color-secondary);
    opacity: 0.4;
}

/* ===== ALERTS SECTION ===== */
.ll-alerts-section {
    margin-bottom: 2rem;
}

.ll-alerts-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ll-alert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(252, 252, 252, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid var(--color-stroke-2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: url(../../dashboard/images/icon/pointer.svg), pointer;
}

.ll-alert-item:hover {
    border-color: rgba(255, 103, 37, 0.2);
    transform: translateX(4px);
}

.ll-alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ll-alert-icon.ownership {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.ll-alert-icon.ec {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.ll-alert-icon svg {
    width: 20px;
    height: 20px;
}

.ll-alert-content {
    flex: 1;
}

.ll-alert-content h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 0 0 0.25rem 0;
}

.ll-alert-content p {
    font-size: 0.875rem;
    color: var(--color-secondary);
    opacity: 0.6;
    margin: 0;
}

.ll-alert-time {
    font-size: 0.75rem;
    color: var(--color-secondary);
    opacity: 0.5;
}

.ll-alert-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6725;
    transition: transform 0.3s ease;
}

.ll-alert-link:hover {
    transform: translateX(4px);
}

.ll-alert-link svg {
    width: 16px;
    height: 16px;
}

/* ===== LOGIN PROMPT ===== */
.ll-login-prompt {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(252, 252, 252, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid var(--color-stroke-2);
    border-radius: 20px;
}

.ll-login-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 103, 37, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.ll-login-icon svg {
    width: 40px;
    height: 40px;
    color: #ff6725;
}

.ll-login-prompt h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.ll-login-prompt p {
    color: var(--color-secondary);
    opacity: 0.6;
    margin: 0 0 1.5rem 0;
}

.ll-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ff6725;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ll-login-btn:hover {
    background: #e55a1f;
    transform: translateY(-1px);
}

/* ===== MODAL ===== */
.ll-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    padding: 1rem;
}

.ll-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ll-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.ll-modal-container {
    position: relative;
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease;
}

.ll-modal-sm {
    max-width: 400px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ll-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-stroke-2);
}

.ll-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.ll-modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 103, 37, 0.1);
    border: none;
    border-radius: 50%;
    color: #ff6725;
    cursor: url(../../dashboard/images/icon/pointer.svg), pointer;
    transition: all 0.3s ease;
}

.ll-modal-close:hover {
    background: rgba(255, 103, 37, 0.2);
    transform: rotate(90deg);
}

.ll-modal-close svg {
    width: 20px;
    height: 20px;
}

.ll-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.ll-modal-body p strong {
    color: #ff6725;
}

.ll-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--color-stroke-2);
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.ll-text-center {
    text-align: center;
}

.ll-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.ll-modal-icon svg {
    width: 32px;
    height: 32px;
}

.ll-modal-icon-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.ll-modal-icon-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.ll-modal-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* ===== MODAL BUTTON ICON ALIGNMENT ===== */
.ll-subdiv-modal-btn.confirm {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== MAP CONTAINER ===== */
.ll-map-container {
    position: relative;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
}

#propertyMap {
    width: 100%;
    height: 100%;
}

.ll-map-search-container {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 60px;
    z-index: 1000;
}

.ll-map-search {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ll-map-search:focus {
    outline: 2px solid #ff6725;
}

.ll-map-search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.ll-map-search-results.active {
    display: block;
}

.ll-search-result-item {
    padding: 0.75rem 1rem;
    cursor: url(../../dashboard/images/icon/pointer.svg), pointer;
    border-bottom: 1px solid #eee;
    font-size: 0.875rem;
}

.ll-search-result-item:hover {
    background: rgba(255, 103, 37, 0.05);
}

.ll-search-result-item:last-child {
    border-bottom: none;
}

.ll-current-location-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: url(../../dashboard/images/icon/pointer.svg), pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.ll-current-location-btn:hover {
    background: #ff6725;
    color: white;
}

.ll-current-location-btn svg {
    width: 20px;
    height: 20px;
}

.ll-map-instruction {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(26, 26, 28, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ll-map-instruction svg {
    width: 18px;
    height: 18px;
    color: #ff6725;
}

/* ===== PROPERTY FORM ===== */
.ll-property-form {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 16px;
}

.ll-form-step {
    display: none;
}

.ll-form-step.active {
    display: block;
}

.ll-form-step h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.ll-form-loading {
    text-align: center;
    padding: 2rem;
}

.ll-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 103, 37, 0.1);
    border-top-color: #ff6725;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

.ll-spinner-sm {
    width: 16px;
    height: 16px;
    border-width: 2px;
    display: inline-block;
    margin-right: 0.5rem;
}

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

.ll-form-group {
    margin-bottom: 1rem;
}

.ll-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.ll-form-group input,
.ll-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-stroke-2);
    border-radius: 8px;
    font-size: 0.875rem;
    background: white;
    transition: all 0.3s ease;
}

.ll-form-group input:focus,
.ll-select:focus {
    border-color: #ff6725;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 103, 37, 0.1);
}

.ll-form-hint {
    font-size: 0.875rem;
    color: var(--color-secondary);
    opacity: 0.6;
    margin-bottom: 1rem;
}

.ll-property-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 103, 37, 0.05);
    border-radius: 12px;
}

.ll-info-row {
    display: flex;
    flex-direction: column;
}

.ll-info-row label {
    font-size: 0.75rem;
    color: var(--color-secondary);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ll-info-row span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-secondary);
}

.ll-ownership-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-stroke-2);
}

.ll-ownership-section h5 {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.ll-ec-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.ll-credits-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 103, 37, 0.08);
    padding: 1rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    font-size: 0.875rem;
}

.ll-credits-notice svg {
    width: 20px;
    height: 20px;
    color: #ff6725;
    flex-shrink: 0;
}

.ll-form-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* ===== BUTTONS ===== */
.ll-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ff6725;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: url(../../dashboard/images/icon/pointer.svg), pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ll-btn-primary:hover:not(:disabled) {
    background: #e55a1f;
    transform: translateY(-1px);
}

.ll-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ll-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0f0f0;
    color: #666;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: url(../../dashboard/images/icon/pointer.svg), pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ll-btn-secondary:hover {
    background: #e0e0e0;
}

.ll-btn-danger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: url(../../dashboard/images/icon/pointer.svg), pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ll-btn-danger:hover {
    background: #dc2626;
}

/* ===== SUBDIVISION GRID ===== */
.ll-subdivision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
    max-height: 250px;
    overflow-y: auto;
}

.ll-subdivision-item {
    padding: 0.75rem;
    background: #f0f0f0;
    border: 2px solid transparent;
    border-radius: 8px;
    text-align: center;
    cursor: url(../../dashboard/images/icon/pointer.svg), pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ll-subdivision-item:hover {
    background: #e0e0e0;
}

.ll-subdivision-item.selected {
    background: #ff6725;
    color: white;
    border-color: #ff6725;
}

/* ===== DETAIL PAGE ===== */
.ll-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.ll-back-link:hover {
    color: #ff6725;
}

.ll-back-link svg {
    width: 18px;
    height: 18px;
}

/* Property Header */
.ll-property-header {
    position: relative;
    background: linear-gradient(135deg, #ff6725 0%, #ff8952 100%);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.ll-property-header-bg {
    position: absolute;
    inset: 0;
}

.ll-property-header-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    top: -50px;
    right: -50px;
}

.ll-property-header-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.ll-property-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.ll-property-status-badge svg {
    width: 14px;
    height: 14px;
}

.ll-property-status-badge.credits-issue {
    background: rgba(239, 68, 68, 0.3);
}

.ll-property-header h1 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.ll-property-location-text {
    color: rgba(255,255,255,0.9);
    margin: 0 0 1rem 0;
}

.ll-property-meta-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.ll-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: white;
}

.ll-meta-item svg {
    width: 16px;
    height: 16px;
}

.ll-property-header-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.ll-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: url(../../dashboard/images/icon/pointer.svg), pointer;
    border: none;
    transition: all 0.3s ease;
}

.ll-btn-check {
    background: white;
    color: #ff6725;
}

.ll-btn-check:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.ll-btn-check:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ll-btn-check.checking {
    background: linear-gradient(135deg, #ff6725, #e55a1f);
    color: white !important;
    pointer-events: none;
}

.ll-btn-check.checking svg {
    animation: spin 1s linear infinite;
    stroke: white;
}

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

.ll-btn-toggle {
    background: rgba(255,255,255,0.95);
    color: #1f2937;
    border: 1px solid rgba(255,255,255,0.5);
}

.ll-btn-toggle:hover {
    background: #fff;
}

.ll-action-btn.ll-btn-danger {
    background: #ef4444;
    color: white;
    border: 1px solid #ef4444;
}

.ll-action-btn.ll-btn-danger:hover {
    background: #dc2626;
}

.ll-action-btn svg {
    width: 16px;
    height: 16px;
}

/* Stats Grid */
.ll-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ll-stat-card {
    background: rgba(252, 252, 252, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid var(--color-stroke-2);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ll-stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 103, 37, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6725;
}

.ll-stat-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.ll-stat-icon.ec {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.ll-stat-icon.billing {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.ll-stat-icon svg {
    width: 24px;
    height: 24px;
}

.ll-stat-content {
    flex: 1;
}

.ll-stat-card .ll-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
}

.ll-stat-card .ll-stat-label {
    font-size: 0.75rem;
    color: var(--color-secondary);
    opacity: 0.6;
    margin-top: 0.25rem;
}

/* Detail Grid */
.ll-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.5rem;
}

.ll-detail-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ll-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Info Cards */
.ll-info-card {
    background: rgba(252, 252, 252, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid var(--color-stroke-2);
    border-radius: 20px;
    overflow: hidden;
}

.ll-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-stroke-2);
}

.ll-card-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-secondary);
}

.ll-card-header svg {
    width: 20px;
    height: 20px;
    color: #ff6725;
}

.ll-view-all-link {
    font-size: 0.875rem;
    color: #ff6725;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.ll-view-all-link:hover {
    opacity: 0.8;
}

.ll-card-body {
    padding: 1.5rem;
}

.ll-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.ll-info-item {
    display: flex;
    flex-direction: column;
}

.ll-info-label {
    font-size: 0.75rem;
    color: var(--color-secondary);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.ll-info-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-secondary);
}

/* History Timeline */
.ll-history-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ll-history-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--color-stroke-2);
}

.ll-history-item.change_detected {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.03);
}

.ll-history-item.error {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.03);
}

.ll-history-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ll-history-icon.ownership {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.ll-history-icon.ec {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.ll-history-icon svg {
    width: 18px;
    height: 18px;
}

.ll-history-content {
    flex: 1;
}

.ll-history-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-secondary);
}

.ll-status-pill {
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 500;
}

.ll-status-pill.no_change {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.ll-status-pill.change_detected {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.ll-status-pill.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.ll-history-changes,
.ll-history-error {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: var(--color-secondary);
    opacity: 0.8;
    line-height: 1.4;
}

.ll-history-changes.text-muted {
    opacity: 0.5;
}

.ll-history-error {
    color: #ef4444;
}

.ll-ec-link {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--color-primary-50);
    color: var(--color-primary-500);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ll-ec-link:hover {
    background: var(--color-primary-100);
    color: var(--color-primary-600);
}

.ll-history-time {
    display: block;
    font-size: 0.75rem;
    color: var(--color-secondary);
    opacity: 0.5;
    margin-top: 0.5rem;
}

.ll-empty-section {
    text-align: center;
    color: var(--color-secondary);
    opacity: 0.6;
    padding: 2rem;
}

/* Transactions List */
.ll-transactions-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom scrollbar for transactions list */
.ll-transactions-list::-webkit-scrollbar {
    width: 6px;
}

.ll-transactions-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.ll-transactions-list::-webkit-scrollbar-thumb {
    background: rgba(255, 103, 37, 0.3);
    border-radius: 3px;
}

.ll-transactions-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 103, 37, 0.5);
}

.ll-transaction-item {
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--color-stroke-2);
}

.ll-transaction-type {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.ll-transaction-details {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--color-secondary);
    opacity: 0.6;
}

.ll-transaction-parties {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-secondary);
    opacity: 0.8;
}

.ll-transaction-parties span {
    display: block;
}

.ll-transaction-value {
    margin-top: 0.5rem;
    font-weight: 600;
    color: #ff6725;
}

/* Billing Info */
.ll-billing-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ll-billing-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-stroke-2);
}

.ll-billing-item:last-child {
    border-bottom: none;
}

.ll-billing-label {
    font-size: 0.875rem;
    color: var(--color-secondary);
    opacity: 0.6;
}

.ll-billing-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-secondary);
}

/* Danger Zone */
.ll-danger-zone {
    border-color: rgba(239, 68, 68, 0.3);
}

.ll-danger-zone .ll-card-header {
    background: rgba(239, 68, 68, 0.05);
}

.ll-danger-zone .ll-card-header h3 {
    color: #ef4444;
}

.ll-danger-zone .ll-card-header svg {
    color: #ef4444;
}

.ll-danger-zone .ll-card-body p {
    font-size: 0.875rem;
    color: var(--color-secondary);
    opacity: 0.7;
    margin: 0 0 1rem 0;
}

.ll-btn-danger-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: url(../../dashboard/images/icon/pointer.svg), pointer;
    transition: all 0.3s ease;
}

.ll-btn-danger-full:hover {
    background: #dc2626;
}

.ll-btn-danger-full svg {
    width: 18px;
    height: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ll-detail-grid {
        grid-template-columns: 1fr;
    }

    .ll-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ll-tracker-hero {
        padding: 1.5rem;
    }

    .ll-tracker-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .ll-tracker-hero h1 {
        font-size: 1.5rem;
    }

    .ll-tracker-stats {
        display: flex;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }

    .ll-tracker-stat {
        flex: 1;
        min-width: 0;
        padding: 0.6rem 0.5rem;
    }

    .ll-stat-value {
        font-size: 1.5rem;
    }

    .ll-stat-label {
        font-size: 0.65rem;
    }

    /* Search input full width on mobile */
    .ll-filters {
        flex-direction: column;
    }

    .ll-filter-search {
        width: 100%;
        min-width: 100%;
    }

    .ll-filter-select {
        width: 100%;
    }

    .ll-tracker-progress {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ll-tracker-line {
        display: none;
    }

    .ll-tracker-step {
        width: calc(50% - 0.5rem);
    }

    .ll-tracker-step-circle {
        width: 44px;
        height: 44px;
    }

    .ll-tracker-step-circle svg {
        width: 20px;
        height: 20px;
    }

    .ll-properties-grid {
        grid-template-columns: 1fr;
    }

    .ll-property-header-content {
        flex-direction: column;
    }

    .ll-property-header-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .ll-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ll-info-grid {
        grid-template-columns: 1fr;
    }

    .ll-ec-form {
        grid-template-columns: 1fr;
    }

    .ll-modal-container {
        max-height: 95vh;
    }

    .ll-map-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .ll-steps-grid {
        grid-template-columns: 1fr;
    }

    .ll-stats-grid {
        grid-template-columns: 1fr;
    }

    .ll-action-btn span {
        display: none;
    }

    .ll-credits-info-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .ll-credits-info-right {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===== TOAST NOTIFICATIONS ===== */
.ll-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ll-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.ll-toast svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.ll-toast-success svg {
    color: #10b981;
}

.ll-toast-error {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.ll-toast-error svg {
    color: rgba(255, 255, 255, 0.9) !important;
}

.ll-toast-error span {
    color: #fff !important;
}

.ll-toast-success {
    background: linear-gradient(135deg, #10b981, #059669) !important;
}

.ll-toast-success svg {
    color: rgba(255, 255, 255, 0.9) !important;
}

.ll-toast-success span {
    color: #fff !important;
}

.ll-toast span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1f2937;
}

/* ===== SMALL SPINNER ===== */
.ll-spinner-sm {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

/* ===== MAP MARKER ===== */
.ll-map-marker {
    background: none;
    border: none;
}

.ll-marker-pulse {
    width: 20px;
    height: 20px;
    background: #ff6725;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(255, 103, 37, 0.4);
    position: relative;
}

.ll-marker-pulse::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid #ff6725;
    animation: markerPulse 1.5s ease-out infinite;
}

@keyframes markerPulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ===== DETAIL MAP ===== */
.ll-detail-map {
    height: 220px;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.ll-detail-map .leaflet-control-attribution {
    font-size: 9px;
    background: rgba(255, 255, 255, 0.7) !important;
    border-radius: 4px 0 0 0;
}

/* ===== SEARCH RESULTS ===== */
.ll-search-result-item {
    padding: 0.75rem 1rem;
    cursor: url(../../dashboard/images/icon/pointer.svg), pointer;
    border-bottom: 1px solid var(--color-stroke-2, #f0f0f0);
    transition: background 0.2s ease;
}

.ll-search-result-item:last-child {
    border-bottom: none;
}

.ll-search-result-item:hover {
    background: rgba(255, 103, 37, 0.05);
}

.ll-search-result-name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1f2937;
}

.ll-search-result-address {
    font-size: 0.8125rem;
    color: #6b7280;
    margin-top: 2px;
}

.ll-search-result-item.ll-no-results {
    color: #6b7280;
    cursor: default;
    text-align: center;
}

.ll-search-result-item.ll-no-results:hover {
    background: none;
}

/* =========================================================
   PROPERTY TRACKER ADD - ADDITIONAL STYLES
   Uses shared wizard styles from lldashcustom.css
   Only property-tracker specific additions here
   ========================================================= */

/* Ensure wizard elements are visible (for non-workspace pages) */
body:not(.ll-workspace-new) .ll-wizard-container,
body:not(.ll-workspace-new) .ll-wizard-header,
body:not(.ll-workspace-new) .ll-wizard-progress,
body:not(.ll-workspace-new) .ll-wizard-step.active {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Map for Property Tracker (uses #trackerMap instead of #wizardMap) */
#trackerMap {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Map container - match workspace height */
.ll-map-container {
    margin-bottom: 0 !important;
    height: 520px;
}

/* Fix map instruction icon color - orange on dark background like workspace-new */
.ll-map-instruction svg {
    color: #ff6725 !important;
}

/* ===== PROPERTY TRACKER SPECIFIC - Owner Name Hero ===== */
.ll-owner-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 1.25rem;
    border-radius: 16px;
    margin-bottom: 1.25rem;
}

.ll-owner-hero-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.ll-owner-hero-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.ll-owner-hero-content {
    flex: 1;
    min-width: 0;
}

.ll-owner-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.ll-owner-hero .ll-owner-names {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-secondary);
    line-height: 1.4;
}

.ll-owner-hero .ll-owner-names .ll-owner-name {
    display: block;
}

.ll-owner-hero .ll-owner-names .ll-owner-extent {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--color-secondary);
    opacity: 0.6;
    margin-top: 0.125rem;
}

/* ===== PROPERTY TRACKER SPECIFIC - Property Details Grid ===== */
.ll-property-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.ll-property-detail-item {
    background: rgba(255, 103, 37, 0.05);
    padding: 0.875rem 1rem;
    border-radius: 12px;
}

.ll-detail-label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
    opacity: 0.5;
    margin-bottom: 0.25rem;
}

.ll-detail-value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-secondary);
}

/* ===== PROPERTY TRACKER SPECIFIC - Credits Notice ===== */
.ll-credits-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 103, 37, 0.08), rgba(255, 137, 82, 0.05));
    border: 1px solid rgba(255, 103, 37, 0.15);
    padding: 1.25rem;
    border-radius: 16px;
}

.ll-credits-notice-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff6725, #ff8952);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ll-credits-notice-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.ll-credits-notice-content {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--color-secondary);
}

.ll-credits-notice-content strong {
    color: #ff6725;
}

.ll-credits-notice-sub {
    display: block;
    font-size: 0.8125rem;
    opacity: 0.6;
    margin-top: 0.125rem;
}

.ll-credits-notice-balance {
    font-size: 0.875rem;
    color: var(--color-secondary);
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 9999px;
    white-space: nowrap;
}

.ll-credits-notice-balance strong {
    color: #ff6725;
}

/* ===== PROPERTY TRACKER - Responsive Grid ===== */
@media (max-width: 768px) {
    .ll-property-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ll-credits-notice {
        flex-direction: column;
        text-align: center;
    }

    .ll-credits-notice-balance {
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .ll-property-details-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== TOAST NOTIFICATIONS ===== */
.ll-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1c;
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
}

.ll-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.ll-toast svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.ll-toast span {
    font-size: 0.9375rem;
    line-height: 1.4;
}

.ll-toast-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.ll-toast-error svg {
    color: rgba(255, 255, 255, 0.9);
}

.ll-toast-success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.ll-toast-success svg {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 480px) {
    .ll-toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }
}

/* ===== PAGINATION ===== */
.ll-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.ll-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 103, 37, 0.08);
    border: 1px solid rgba(255, 103, 37, 0.2);
    border-radius: 8px;
    color: #ff6725;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: url(../../dashboard/images/icon/pointer.svg), pointer;
}

.ll-page-btn:hover:not(.disabled) {
    background: rgba(255, 103, 37, 0.15);
    border-color: rgba(255, 103, 37, 0.4);
    transform: translateY(-1px);
}

.ll-page-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.ll-page-btn svg {
    flex-shrink: 0;
}

.ll-page-info {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

@media (max-width: 480px) {
    .ll-pagination {
        gap: 0.5rem;
    }
    
    .ll-page-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .ll-page-info {
        font-size: 0.8125rem;
    }
}

/* ===== INFO CARD ANIMATIONS ===== */
.ll-info-card {
    opacity: 0;
}

.ll-info-item {
    opacity: 0;
}

.ll-transaction-item {
    opacity: 0;
}
