.orbitron {
    font-family: 'Orbitron';
    font-weight: 400;
}

.orbitron b {
    font-weight: 900;
}

.bottom-links a {
    text-decoration: none;
    color: #356169;
}

.bottom-links a:hover {
    text-decoration: underline;
    color: #5faab1;
}

.markdown-content-container h1 {
    font-size: 3rem;
    font-family: 'Orbitron';
    font-weight: 400;
}

.markdown-content-container h2 {
    font-size: 2.25rem;
}

.markdown-content-container h3 {
    font-size: 1.75rem;
}

.markdown-content-container h4,h5,h6 {
    font-size: 1.25rem;
}

html {
    background-color: #000000;
}

body {
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(50, 50, 100, 1) 100%) no-repeat;
}

div.hero {
    box-shadow: #000000 0 4px 10px;
}

div.userlist-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

div.userlist-grid div.user-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    background-color: #2b2a33;
    box-shadow: #000000 0 2px 6px;
}

@media (min-width: 640px) {
    div.userlist-grid.columns-2 {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (min-width: 640px) {
    div.userlist-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (min-width:1024px) {
    div.userlist-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

span.card-handle {
    text-color: var(--subtext);
    font-size: 85%;
}

h3.card-displayname {
    font-weight: bold;
    font-size: 1rem;
    margin-top: 5px;
}

img.card-avatar {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
}

span.st-label {
    font-size: .9rem;
    color: var(--subtext);
}

span.st-data {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0.25rem;
}

/* Admin UI Styles */
.admin-users-layout {
    min-height: calc(100vh - 200px);
}

.admin-sidebar {
    height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
}

.admin-sidebar .card-body {
    flex: 1;
    overflow: hidden;
}

.admin-user-list {
    height: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #495057 #2b2a33;
}

.admin-user-list::-webkit-scrollbar {
    width: 8px;
}

.admin-user-list::-webkit-scrollbar-track {
    background: #2b2a33;
}

.admin-user-list::-webkit-scrollbar-thumb {
    background-color: #495057;
    border-radius: 4px;
}

.admin-user-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #3d3d3d;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.15s ease;
}

.admin-user-item:hover {
    background-color: #3d3d3d;
    color: inherit;
}

.admin-user-item.active {
    background-color: #495057;
}

.admin-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.admin-user-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

.admin-user-info {
    min-width: 0;
    flex: 1;
}

.admin-user-handle {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-detail-panel {
    min-height: calc(100vh - 200px);
    position: relative;
}

.admin-detail-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    min-height: 400px;
}

.admin-detail-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.admin-detail-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.admin-detail-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #adb5bd;
}

.admin-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.htmx-indicator {
    display: none;
}

.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
    display: flex;
}

.admin-spammer-list,
.admin-spam-posts {
    max-height: 400px;
    overflow-y: auto;
}

.admin-spam-post-item {
    padding: 1rem;
    border-bottom: 1px solid #3d3d3d;
}

.admin-spam-post-item:last-child {
    border-bottom: none;
}

/* Admin Timeline Styles */
.admin-ozone-timeline {
    max-height: 300px;
    overflow-y: auto;
}

.admin-timeline-item {
    padding: 0.5rem;
    border-left: 2px solid #495057;
    margin-left: 0.5rem;
}

.admin-timeline-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Admin User Posts Styles */
.admin-user-posts {
    max-height: 400px;
    overflow-y: auto;
}

.admin-post-item {
    padding: 0.5rem;
    margin-bottom: 0.25rem;
    background-color: #000;
    border: 1px solid #495057;
    border-radius: 4px;
}

.admin-post-item.admin-post-flagged {
    border-color: #ffc107;
}

.admin-post-flags {
    margin-right: 0.5rem;
    min-width: 1.5rem;
}

.admin-post-content {
    font-family: 'Courier New', Consolas, monospace;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #e9ecef;
    word-break: break-word;
}

.admin-post-date {
    color: #6c757d;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    white-space: nowrap;
}

