/* Additional compact spacing utilities */
.space-y-0\.5 > * + * { margin-top: 0.125rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-1\.5 > * + * { margin-top: 0.375rem; }

.gap-1\.5 { gap: 0.375rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }

.p-1\.5 { padding: 0.375rem; }
.p-2\.5 { padding: 0.625rem; }

/* Compact card padding on all screens */
.profile-card {
    padding: 0.75rem !important;
}

@media (min-width: 768px) {
    .profile-card {
        padding: 0.875rem !important;
    }
}

/* Smaller text sizes for compact display */
.text-\[0\.65rem\] {
    font-size: 0.65rem;
    line-height: 0.875rem;
}

.text-\[0\.7rem\] {
    font-size: 0.7rem;
    line-height: 0.95rem;
}

/* Tighter line heights */
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }

/* Smaller avatars on mobile */
@media (max-width: 768px) {
    .profile-avatar,
    .profile-avatar-placeholder {
        width: 64px !important;
        height: 64px !important;
        margin-bottom: 0.5rem !important;
    }
    
    .profile-avatar-placeholder span {
        font-size: 1.25rem !important;
    }
}

/* Truncate text helper */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Compact button grid */
.grid.grid-cols-4.gap-1\.5 {
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .grid.grid-cols-4.gap-1\.5 {
        gap: 0.375rem;
    }
}

