/* SIMAI Asset Repository */

h1 {
    display: none;
}

* {
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, sans-serif;
    margin: 0;
    background: #0f172a;
    color: #e5e7eb;
}

/* Header */

.header {
    padding: 22px 40px;
    font-size: 24px;
    font-weight: 600;
    border-bottom: 1px solid #1f2937;
}

/* Main container */

.container {
    padding: 40px;
}

/* Grid */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
    gap: 24px;
}

/* Card */

.card {
    background: #111827;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid #1f2937;
}

.card:hover {
    transform: translateY(-4px);
    background: #1f2937;
}

/* Logo preview */

.card img {
    max-width: 100%;
    max-height: 90px;
    margin-bottom: 10px;
    object-fit: contain;
}

/* Filename */

.card span {
    font-size: 13px;
    color: #9ca3af;
    word-break: break-word;
}

/* Folder card */

.folder {
    font-size: 30px;
}

/* Mobile */

@media (max-width: 700px) {

    .container {
        padding: 20px;
    }

}
