* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main dashboard container */
.sv-client-dashboard {
    flex: 1;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    animation: fadeIn 0.6s ease-out;
}

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

/* Header Section */
.sv-dashboard-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sv-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: relative;
}

/* Logo Section */
.sv-logo-section {
    flex-shrink: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.sv-logo {
    width: 120px;
    height: 40px;
    object-fit: contain;
}

.sv-logo-bg {
    background-image: url('../img/sv_logo_2022_dark.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 120px;
    height: 32px;
}

/* Back Button */
.sv-back-section {
    display: flex;
    align-items: center;
    z-index: 2;
}

.sv-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
}

.sv-back-btn:hover {
    background: #f3f4f6;
    color: #374151;
}

/* User Section */
.sv-user-section {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.sv-user-welcome {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sv-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sv-user-avatar svg {
    width: 24px;
    height: 24px;
    color: #6b7280;
}

.sv-user-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.sv-user-avatar-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50%;
    text-transform: uppercase;
}

.sv-user-details h3 {
    color: #002540;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.sv-user-details p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.sv-user-email {
    color: #6973DA !important;
    font-size: 0.8rem !important;
    font-weight: 500;
    margin-bottom: 3px !important;
}

.sv-dashboard-title {
    color: #002540 !important;
    font-size: 10px !important;
    font-weight: 600;
    margin-top: 2px !important;
}

/* Logout Button */
.sv-logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    background: transparent;
    cursor: pointer;
}

.sv-logout-btn:hover {
    background: #f3f4f6;
    color: #374151;
    border-color: #d1d5db;
}

/* Main content */
.sv-dashboard-main {
    padding: 40px 0;
    animation: slideInUp 0.6s ease-out 0.2s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sv-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Properties Section */
.sv-properties-section {
    margin-bottom: 40px;
}

.sv-section-header {
    text-align: center;
    margin-bottom: 40px;
    animation: titleSlideIn 0.8s ease-out 0.4s both;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sv-section-header h2 {
    color: #002540;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    white-space: nowrap;
}

.sv-section-header p {
    color: #6b7280;
    font-size: 20px;
    margin: 0;
}

/* Properties Grid */
.sv-properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Property Card */
.sv-property-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.6s ease-out;
    animation-fill-mode: both;
    height: 520px;
    display: flex;
    flex-direction: column;
}

.sv-property-card:nth-child(1) { animation-delay: 0.1s; }
.sv-property-card:nth-child(2) { animation-delay: 0.2s; }
.sv-property-card:nth-child(3) { animation-delay: 0.3s; }
.sv-property-card:nth-child(4) { animation-delay: 0.4s; }
.sv-property-card:nth-child(5) { animation-delay: 0.5s; }
.sv-property-card:nth-child(6) { animation-delay: 0.6s; }

.sv-property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #86b2d1;
}

.sv-property-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.sv-property-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.sv-property-image img.error {
    object-fit: fill;
    background: #f3f4f6;
}

.sv-property-card:hover .sv-property-image img {
    transform: scale(1.1);
}

.sv-property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 37, 64, 0.8) 0%, rgba(0, 61, 102, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.sv-property-card:hover .sv-property-overlay {
    opacity: 1;
}

.sv-property-status {
    color: white;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sv-status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.sv-property-content {
    padding: 15px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.sv-property-header {
    margin-bottom: 20px;
    flex-shrink: 0;
    min-height: 85px;
    max-height: 120px;
    overflow: hidden;
}

.sv-property-title-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.sv-property-title {
    color: #002540;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 70px;
    max-height: 70px;
    position: relative;
}

.sv-property-link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    border-radius: 4px;
    padding: 2px 4px;
    margin: -2px -4px;
}

.sv-property-link:hover {
    color: #86b2d1;
    background: rgba(134, 178, 209, 0.1);
    transform: translateY(-1px);
}

.sv-external-link-icon {
    opacity: 0.6;
    transition: all 0.3s ease;
}

.sv-property-link:hover .sv-external-link-icon {
    opacity: 1;
    transform: translate(1px, -1px);
}

.sv-property-badge {
    background: linear-gradient(135deg, #86b2d1 0%, #6b9bc3 100%);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 12px;
    box-shadow: 0 2px 8px rgba(134, 178, 209, 0.3);
}

.sv-property-location {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.sv-location-icon {
    color: #86b2d1;
    margin-top: 2px;
    flex-shrink: 0;
}

.sv-location-icon svg {
    width: 16px;
    height: 16px;
}

.sv-property-address {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 36px;
    max-height: 36px;
    position: relative;
}

/* Custom ellipsis with + icon for truncated content */
.sv-property-title::after,
.sv-property-address::after {
    content: '+';
    position: absolute;
    right: 0;
    bottom: 0;
    background: white;
    color: #86b2d1;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 3px;
    box-shadow: 0 0 0 2px white;
    display: none;
}

.sv-property-title.truncated::after,
.sv-property-address.truncated::after {
    display: block;
}

.sv-property-description {
    color: #6b7280;
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
}

.sv-property-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    flex-shrink: 0;
    min-height: 32px;
}

.sv-pill-btn {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    line-height: 1;
    text-decoration: none;
}

.sv-pill-btn:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sv-pill-btn:active {
    transform: translateY(0);
}

.sv-pill-btn svg {
    flex-shrink: 0;
}



.sv-blockchain-btn {
    border-color: #10b981;
    color: #047857;
    background: rgba(16, 185, 129, 0.15);
}

.sv-blockchain-btn:hover {
    background: rgba(16, 185, 129, 0.25);
    border-color: #059669;
    color: #065f46;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.sv-sales-website-btn {
    border-color: #f97316;
    color: #ea580c;
    background: rgba(249, 115, 22, 0.15);
    text-decoration: none;
}

.sv-sales-website-btn:hover {
    background: rgba(249, 115, 22, 0.25);
    border-color: #ea580c;
    color: #c2410c;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    text-decoration: none;
}

.sv-property-divider {
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #d1d5db 0,
        #d1d5db 6px,
        transparent 6px,
        transparent 12px
    );
    margin: 12px 0;
    border-radius: 1px;
    flex-shrink: 0;
}

.sv-analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 5px !important;
    flex: 1;
}

.sv-analytics-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.sv-analytics-item:hover {
    transform: scale(1.05);
}

.sv-analytics-value {
    color: #002540;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.sv-analytics-label {
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sv-property-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    margin-top: auto;
}

.sv-property-footer {
    margin-top: auto;
    flex-shrink: 0;
    padding: 5px 0 0 0 !important;
    min-height: 56px;
    max-height: 56px;
    display: flex;
    align-items: center;
    position: sticky;
    bottom: 0;
}

.sv-property-footer .sv-analytics-btn {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding-top: 12px;
}

.sv-view-analytics-btn {
    flex: 1;
    background: linear-gradient(135deg, #86b2d1 0%, #6b9bc3 100%);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.sv-view-analytics-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.sv-view-analytics-btn:hover::before {
    left: 100%;
}

.sv-view-analytics-btn:hover {
    background: linear-gradient(135deg, #7aa3c0 0%, #5a8ab0 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(134, 178, 209, 0.4);
}

.sv-view-analytics-btn:active {
    transform: translateY(0);
}

/* Analytics Button Styling */
.sv-analytics-btn {
    flex: 1;
    background: linear-gradient(135deg, #86b2d1 0%, #6b9bc3 100%);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.sv-analytics-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.sv-analytics-btn:hover::before {
    left: 100%;
}

.sv-analytics-btn:hover {
    background: linear-gradient(135deg, #7aa3c0 0%, #5a8ab0 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(134, 178, 209, 0.4);
}

.sv-analytics-btn:active {
    transform: translateY(0);
}

.sv-analytics-btn svg {
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sv-properties-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .sv-header-content {
        padding: 0 20px;
        height: 70px;
    }
    
    .sv-logo-bg {
        background-size: 140px 30px;
        width: 140px;
        height: 30px;
    }
    
    .sv-user-section {
        gap: 20px;
    }
    
    .sv-user-welcome {
        gap: 12px;
    }
    
    .sv-user-avatar {
        width: 40px;
        height: 40px;
    }
    
    .sv-user-details h3 {
        font-size: 14px;
    }
    
    .sv-user-details p {
        font-size: 12px;
    }
    
    .sv-container {
        padding: 0 20px;
    }
    
    .sv-properties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sv-property-card {
        height: auto;
        min-height: 480px;
    }
    
    .sv-shimmer-card {
        height: auto;
        min-height: 480px;
    }
    
    .sv-property-header {
        min-height: 100px;
    }
    
    .sv-property-buttons {
        min-height: 28px;
    }
    
    .sv-property-footer {
        height: 60px;
        padding: 5px 0 0 0;
    }
    
    .sv-property-title {
        font-size: 16px;
        min-height: 60px;
        max-height: 60px;
    }
    
    .sv-property-badge {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .sv-property-address {
        font-size: 12px;
        min-height: 32px;
        max-height: 32px;
    }
    
    .sv-property-description {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .sv-header-content {
        padding: 0 16px;
    }
    
    .sv-user-section {
        gap: 15px;
    }
    
    .sv-user-welcome {
        gap: 10px;
    }
    
    .sv-user-avatar {
        width: 36px;
        height: 36px;
    }
    
    .sv-container {
        padding: 0 16px;
    }
    
    .sv-section-header h2 {
        font-size: 18px;
        white-space: nowrap;
    }
    
    .sv-section-header p {
        font-size: 14px;
    }
    
    .sv-property-content {
        padding: 20px;
    }
    
    .sv-property-title-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .sv-property-title {
        font-size: 18px;
        margin-bottom: 0;
    }
    
    .sv-property-badge {
        font-size: 10px;
        padding: 3px 6px;
        margin-left: 0;
    }
    
    .sv-property-address {
        font-size: 13px;
    }
    
    .sv-property-description {
        font-size: 12px;
    }
}

/* Loading and Error States */
.sv-loading-properties {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

.sv-error-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.sv-error-message h3 {
    color: #dc2626;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.sv-error-message p {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.sv-retry-btn {
    background: linear-gradient(135deg, #86b2d1 0%, #6b9bc3 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sv-retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 155, 195, 0.4);
}

.sv-retry-btn:active {
    transform: translateY(0);
}

/* No properties state */
.sv-no-properties {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.sv-no-properties-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.sv-no-properties h3 {
    color: #374151;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.sv-no-properties p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.5;
}

/* Shimmer card styles */
.sv-shimmer-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    animation: shimmer-pulse 1.5s ease-in-out infinite;
    overflow: hidden;
    height: 520px;
    display: flex;
    flex-direction: column;
}

.sv-shimmer-card .sv-property-image {
    position: relative;
    overflow: hidden;
}

.sv-shimmer-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 0;
}

.sv-shimmer-card .sv-property-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sv-shimmer-title {
    width: 80%;
    height: 24px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 8px;
}

.sv-shimmer-address {
    width: 60%;
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 16px;
}

.sv-shimmer-pill-btn {
    width: 100px;
    height: 28px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 20px;
    margin-right: 8px;
    display: inline-block;
}

.sv-shimmer-value {
    width: 50px;
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 4px;
}

.sv-shimmer-label {
    width: 70px;
    height: 12px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

.sv-shimmer-analytics-btn {
    width: 100%;
    height: 48px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 10px;
}

.sv-shimmer-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 50%;
    display: inline-block;
}

.sv-shimmer-status {
    width: 120px;
    height: 14px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    display: inline-block;
    margin-left: 8px;
}

/* Shimmer animations */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes sv-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes shimmer-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Analytics shimmer handled by JS */
.sv-property-header h3 {
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 10px;
}

/* Mobile Menu */
.mobil-hamburger {
    flex: 0 0 auto;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.mobil-hamburger:hover {
    background-color: rgba(0, 37, 64, 0.1);
}

.mobil-hamburger svg {
    width: 24px;
    height: 24px;
    fill: #002540;
}

.sv-menu-nav {
    position: fixed;
    top: 62px;
    right: 0;
    width: 60%;
    background: #fff;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.sv-menu-nav.active {
    transform: translateX(0);
}

/* Modal Backdrop */
.sv-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.sv-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* User Section */
.sv-user-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.sv-user-welcome {
    font-size: 14px;
    color: #6b7280;
}

.sv-user-details {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.sv-user-details h3 {
    font-size: 1.0rem;
    font-weight: 500;
    color: #002540;
}

.sv-user-details p {
    font-size: 14px;
    color: #6b7280;
}

/* Logout Button */
.sv-logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f3f4f6;
    border: none;
    border-radius: 6px;
    color: #002540;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sv-logout-btn:hover {
    background: #e5e7eb;
}

/* Menu Items */
.menu-items {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sv-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    color: #6b7280;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.sv-menu-item:hover {
    background: #f3f4f6;
    color: #374151;
}

.sv-menu-item.active {
    background: #f3f4f6;
    color: #002540;
}

.sv-menu-item svg {
    width: 18px;
    height: 18px;
    color: currentColor;
}

.sv-menu-item span {
    font-size: 14px;
    font-weight: 500;
}

.sv-admin-menu-item {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

/* Responsive Design */
@media (min-width: 768px) {
    .showMobile {
        display: none !important;
    }
    
    .showWeb {
        display: flex !important;
    }
}

@media (max-width: 767px) {
    .showMobile {
        display: flex !important;
    }
    
    .showWeb {
        display: none !important;
    }
    
    .sv-header-content {
        padding: 0 16px;
        height: 56px;
        position: relative;
    }
    
    .sv-logo-section {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }
    
    .sv-logo-bg {
        width: 100px;
        height: 28px;
    }
    
    .sv-logo {
        width: 100px;
        height: 28px;
    }
    
    .sv-back-btn span {
        display: none;
    }
    
    .sv-back-btn {
        padding: 8px;
    }
    
    .mobil-hamburger svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .sv-menu-nav {
        width: 85%;
    }
}