body {
    background-color: #F9FAFB;
    color: #27272a;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 8px;
    color: #09090b;
}

.subtitle {
    color: #71717a;
    margin-bottom: 32px;
}

.assets-grid {
    display: grid;
    gap: 24px;
}

.asset-item {
    background: white;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: border-color 0.2s;
}

.asset-item:hover {
    border-color: #a1a1aa;
}

.asset-info {
    flex: 1;
}

.asset-name {
    font-weight: 500;
    color: #09090b;
    margin-bottom: 8px;
}

.asset-url {
    font-size: 13px;
    color: #71717a;
    word-break: break-all;
    font-family: monospace;
}

.asset-image {
    max-width: 150px;
    max-height: 80px;
    border-radius: 4px;
    margin-right: 16px;
    object-fit: cover;
}

.empty-state {
    color: #71717a;
    padding: 24px;
    text-align: center;
}

.empty-state strong {
    color: #09090b;
}

.asset-url-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-btn {
    padding: 6px 12px;
    background-color: #e4e4e7;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.copy-btn:hover {
    background-color: #d4d4d8;
}
